forked from Bananymous/banan-os
LibC: Add missing u_char and u_short types
This commit is contained in:
parent
c7be3dcd5b
commit
e0d986dcd7
|
@ -185,6 +185,8 @@ __BEGIN_DECLS
|
||||||
typedef int bits32_t;
|
typedef int bits32_t;
|
||||||
typedef unsigned int u_bits32_t;
|
typedef unsigned int u_bits32_t;
|
||||||
typedef char* bits64_t;
|
typedef char* bits64_t;
|
||||||
|
typedef unsigned char u_char;
|
||||||
|
typedef unsigned short u_short;
|
||||||
typedef unsigned int u_int;
|
typedef unsigned int u_int;
|
||||||
typedef unsigned long u_long;
|
typedef unsigned long u_long;
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue