LibC: Add non standard types/values used by ports

This commit is contained in:
2025-04-01 23:14:38 +03:00
parent c1618e2b5d
commit 2ba25b4c28
2 changed files with 9 additions and 0 deletions

View File

@@ -185,6 +185,14 @@ __BEGIN_DECLS
#ifdef __need_all_types
#include <stdint.h>
typedef short bits16_t;
typedef unsigned short u_bits16_t;
typedef int bits32_t;
typedef unsigned int u_bits32_t;
typedef char* bits64_t;
typedef unsigned int u_int;
typedef unsigned long u_long;
#endif
#undef __need_all_types