1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 05:57:44 +00:00

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
parent 08209cc665
commit 92953ba2f3

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;