diff options
Diffstat (limited to 'lib/libc/string/strchr.c')
| -rw-r--r-- | lib/libc/string/strchr.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/libc/string/strchr.c b/lib/libc/string/strchr.c index 06fb51bc..01b2589a 100644 --- a/lib/libc/string/strchr.c +++ b/lib/libc/string/strchr.c @@ -1,4 +1,6 @@ -#include <string.h> // for strchr, NULL +#include "stddef.h" // for NULL + +#include <string.h> // for strchr char *strchr(const char *s, int c) { |
