types: add BSD style typedefs for unsigned types

This commit is contained in:
anna 2021-11-09 22:18:36 +01:00
parent fb8bef86d5
commit ec889c08b9
Signed by: fef
GPG key ID: EC22E476DC2D3D84

View file

@ -18,6 +18,11 @@
# endif /* not __cplusplus */
#endif /* not _BOOL_DECLARED */
typedef unsigned char u_char;
typedef unsigned short u_short;
typedef unsigned int u_int;
typedef unsigned long u_long;
typedef __int8_t i8;
typedef __uint8_t u8;