LibC: Add missing u_* typedefs (u_char/u_short)

This commit is contained in:
Calvin Buckley 2019-10-12 23:21:10 -03:00 committed by Andreas Kling
commit 92953ba2f3
Notes: sideshowbarker 2024-07-19 11:43:12 +09:00

View file

@ -6,6 +6,8 @@
__BEGIN_DECLS
typedef unsigned char u_char;
typedef unsigned short u_short;
typedef unsigned int u_int;
typedef unsigned long u_long;