From 62ba2a9ab01e5f2a9b1cd325af8d3112702b7713 Mon Sep 17 00:00:00 2001 From: Anton Kling Date: Mon, 15 Apr 2024 20:34:58 +0200 Subject: Bug fix and cleanup. --- kernel/libc/include/string.h | 1 - 1 file changed, 1 deletion(-) (limited to 'kernel/libc/include') diff --git a/kernel/libc/include/string.h b/kernel/libc/include/string.h index 707d391..89ea5ab 100644 --- a/kernel/libc/include/string.h +++ b/kernel/libc/include/string.h @@ -13,7 +13,6 @@ int isequal(const char *s1, const char *s2); int isequal_n(const char *s1, const char *s2, u32 n); char *copy_and_allocate_string(const char *s); char *copy_and_allocate_user_string(const char *s); -char *strncpy(char *dest, const char *src, size_t n); size_t strlcpy(char *dst, const char *src, size_t dsize); char *strcat(char *s1, const char *s2); #endif -- cgit v1.2.3