added types
This commit is contained in:
parent
ac1dc36559
commit
a03a990c86
1 changed files with 6 additions and 1 deletions
|
@ -14,7 +14,12 @@
|
||||||
|
|
||||||
#include <sys/cdefs.h>
|
#include <sys/cdefs.h>
|
||||||
|
|
||||||
#include <stddef.h>
|
#include <types/size_t.h>
|
||||||
|
#include <types/locale_t.h>
|
||||||
|
|
||||||
|
#ifndef NULL
|
||||||
|
#define NULL (void *) 0
|
||||||
|
#endif
|
||||||
|
|
||||||
/* Copying Functions (ISO C Std. 7.24.2) */
|
/* Copying Functions (ISO C Std. 7.24.2) */
|
||||||
void * memcpy(void * __restrict, const void * __restrict, size_t);
|
void * memcpy(void * __restrict, const void * __restrict, size_t);
|
||||||
|
|
Loading…
Reference in a new issue