mirror of
https://github.com/tailix/libkernaux.git
synced 2024-11-13 11:04:27 -05:00
Main: libc/include/: Add <inttypes.h> and <sys/types.h>
This commit is contained in:
parent
c316a4fae7
commit
3c17a725d5
3 changed files with 27 additions and 1 deletions
|
@ -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
12
libc/include/inttypes.h
Normal 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
12
libc/include/sys/types.h
Normal file
|
@ -0,0 +1,12 @@
|
|||
#ifndef _SYS_TYPES_H
|
||||
#define _SYS_TYPES_H 1
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif
|
Loading…
Reference in a new issue