diff options
author | Anton Kling <anton@kling.gg> | 2024-04-15 20:34:58 +0200 |
---|---|---|
committer | Anton Kling <anton@kling.gg> | 2024-04-15 20:34:58 +0200 |
commit | 62ba2a9ab01e5f2a9b1cd325af8d3112702b7713 (patch) | |
tree | 0926fbbc9d8c0058ee0f37e4f8691a554ca647e3 /kernel/libc/include | |
parent | 3acd8cf6c8e41c1e1228c60ac5c4ea0f69e7aff5 (diff) |
Bug fix and cleanup.
Diffstat (limited to 'kernel/libc/include')
-rw-r--r-- | kernel/libc/include/string.h | 1 |
1 files changed, 0 insertions, 1 deletions
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 |