LibC: Add missing u_char and u_short types

This commit is contained in:
Bananymous 2025-05-27 07:11:22 +03:00
parent c7be3dcd5b
commit e0d986dcd7
1 changed files with 2 additions and 0 deletions

View File

@ -185,6 +185,8 @@ __BEGIN_DECLS
typedef int bits32_t;
typedef unsigned int u_bits32_t;
typedef char* bits64_t;
typedef unsigned char u_char;
typedef unsigned short u_short;
typedef unsigned int u_int;
typedef unsigned long u_long;
#endif