mescc: Tinycc support: headers.
* mlibc/include/string.h (ssize_t): New type. * mlibc/include/unistd.h (ssize_t): New type.
This commit is contained in:
parent
8ec7e1225b
commit
16b9a21712
|
@ -30,7 +30,12 @@
|
|||
|
||||
#ifndef __MES_SIZE_T
|
||||
#define __MES_SIZE_T
|
||||
typedef long size_t;
|
||||
typedef unsigned long size_t;
|
||||
#endif
|
||||
|
||||
#ifndef __MES_SSIZE_T
|
||||
#define __MES_SSIZE_T
|
||||
typedef long ssize_t;
|
||||
#endif
|
||||
|
||||
size_t strlen (char const*);
|
||||
|
|
|
@ -30,7 +30,12 @@
|
|||
|
||||
#ifndef __MES_SIZE_T
|
||||
#define __MES_SIZE_T
|
||||
typedef long size_t;
|
||||
typedef unsigned long size_t;
|
||||
#endif
|
||||
|
||||
#ifndef __MES_SSIZE_T
|
||||
#define __MES_SSIZE_T
|
||||
typedef long ssize_t;
|
||||
#endif
|
||||
|
||||
int access (char const *s, int mode);
|
||||
|
|
Loading…
Reference in a new issue