From a03a990c865372095a05550dcb5804c9f0b79a09 Mon Sep 17 00:00:00 2001 From: Gitea Date: Tue, 1 Dec 2020 17:32:49 -0600 Subject: [PATCH] added types --- include/string.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/include/string.h b/include/string.h index 0415747..2aeeba7 100755 --- a/include/string.h +++ b/include/string.h @@ -14,7 +14,12 @@ #include -#include +#include +#include + +#ifndef NULL +#define NULL (void *) 0 +#endif /* Copying Functions (ISO C Std. 7.24.2) */ void * memcpy(void * __restrict, const void * __restrict, size_t);