added types

This commit is contained in:
Gitea 2020-12-01 17:32:49 -06:00
parent ac1dc36559
commit a03a990c86
1 changed files with 6 additions and 1 deletions

View File

@ -14,7 +14,12 @@
#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) */
void * memcpy(void * __restrict, const void * __restrict, size_t);