diff options
author | stefan <stefan@s00.xyz> | 2023-04-21 19:53:04 -0400 |
---|---|---|
committer | stefan <stefan@s00.xyz> | 2023-04-21 19:53:04 -0400 |
commit | eff82c45c589b42061344039d5f2efc8ad7c52df (patch) | |
tree | 4c5d89eea3fa74caba5d3dbfb8567643f3747e6d /include/stddef.h | |
parent | 821706a3fea34c18a6171cf5169d5d6d852966de (diff) | |
download | sv-eff82c45c589b42061344039d5f2efc8ad7c52df.tar.gz |
libfdt port and the required libc functions
Diffstat (limited to 'include/stddef.h')
-rw-r--r-- | include/stddef.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/stddef.h b/include/stddef.h index 998f53d..a80cafb 100644 --- a/include/stddef.h +++ b/include/stddef.h @@ -3,5 +3,7 @@ #define NULL ((void*)0) typedef unsigned long size_t; +typedef unsigned int wchar_t; +typedef unsigned int wint_t; #endif /* _STDDEF_H_ */ |