From 92953ba2f3f5ae3384d0fd9cbd8b08f20e93bb6e Mon Sep 17 00:00:00 2001 From: Calvin Buckley Date: Sat, 12 Oct 2019 23:21:10 -0300 Subject: [PATCH] LibC: Add missing u_* typedefs (u_char/u_short) --- Libraries/LibC/sys/types.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Libraries/LibC/sys/types.h b/Libraries/LibC/sys/types.h index c9b1edad1e..cda19da382 100644 --- a/Libraries/LibC/sys/types.h +++ b/Libraries/LibC/sys/types.h @@ -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;