Add missing BITS_PER_BYTE definition

This commit is contained in:
Rafal Kupiec 2024-02-13 16:58:30 +01:00
parent cca2e65376
commit c096c5d6df
Signed by: belliash
GPG Key ID: 4E829243E0CFE6B4

View File

@ -40,6 +40,9 @@
#define MAXLONG 0x7FFFFFFF
#define MAXULONG 0xFFFFFFFF
/* Number of bits per byte */
#define BITS_PER_BYTE 8
/* Preprocessor macros for defining a structure alignment, packing and segment */
#define ALIGN(x) __attribute__((aligned(x)))
#define PACK __attribute__((packed))