diff options
Diffstat (limited to 'kern/string.h')
-rw-r--r-- | kern/string.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/kern/string.h b/kern/string.h index 840ae115..51cdf9e8 100644 --- a/kern/string.h +++ b/kern/string.h @@ -30,5 +30,6 @@ size_t strlcpy(char * restrict dest, const char * restrict src, size_t n); int strcmp(const char *s1, const char *s2); int strncmp(const char *s1, const char *s2, size_t n); char * strchr(const char *s, int c); +const char * strerror(int error); #endif /* KERN_STRING_H */ |