From 3e09037780ca95633749be3acd52e817eed7f98c Mon Sep 17 00:00:00 2001 From: dzwdz Date: Thu, 24 Aug 2023 19:10:35 +0200 Subject: libc: get most of binutils to compile --- src/libc/include/string.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/libc/include/string.h') diff --git a/src/libc/include/string.h b/src/libc/include/string.h index 78bed9b..d9d2b74 100644 --- a/src/libc/include/string.h +++ b/src/libc/include/string.h @@ -17,8 +17,10 @@ int strcoll(const char *s1, const char *s2); char *strstr(const char *s1, const char *s2); +char *strcat(char *restrict dst, const char *restrict src); char *strcpy(char *restrict s1, const char *restrict s2); char *strncpy(char *restrict s1, const char *restrict s2, size_t n); +char *strncat(char *restrict dst, const char *restrict src, size_t n); char *stpncpy(char *restrict dst, const char *restrict src, size_t n); char *strdup(const char *s); -- cgit v1.2.3