Main: libc/include/: Add <inttypes.h> and <sys/types.h>

This commit is contained in:
Alex Kotov 2022-06-10 09:19:21 +03:00
parent c316a4fae7
commit 3c17a725d5
Signed by: kotovalexarian
GPG Key ID: 553C0EBBEB5D5F08
3 changed files with 27 additions and 1 deletions

View File

@ -1,4 +1,6 @@
nobase_include_HEADERS = \
ctype.h \
inttypes.h \
stdlib.h \
string.h
string.h \
sys/types.h

12
libc/include/inttypes.h Normal file
View File

@ -0,0 +1,12 @@
#ifndef _INTTYPES_H
#define _INTTYPES_H 1
#ifdef __cplusplus
extern "C" {
#endif
#ifdef __cplusplus
}
#endif
#endif

12
libc/include/sys/types.h Normal file
View File

@ -0,0 +1,12 @@
#ifndef _SYS_TYPES_H
#define _SYS_TYPES_H 1
#ifdef __cplusplus
extern "C" {
#endif
#ifdef __cplusplus
}
#endif
#endif