summaryrefslogtreecommitdiff
path: root/src/commonlib/bsd/include
diff options
context:
space:
mode:
Diffstat (limited to 'src/commonlib/bsd/include')
-rw-r--r--src/commonlib/bsd/include/commonlib/bsd/string.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/commonlib/bsd/include/commonlib/bsd/string.h b/src/commonlib/bsd/include/commonlib/bsd/string.h
index 8e8b896e7e..5c97c65cae 100644
--- a/src/commonlib/bsd/include/commonlib/bsd/string.h
+++ b/src/commonlib/bsd/include/commonlib/bsd/string.h
@@ -8,6 +8,8 @@
size_t strlen(const char *src);
size_t strnlen(const char *str, size_t maxlen);
+char *strcat(char *dst, const char *src);
+char *strncat(char *dst, const char *src, size_t n);
unsigned int skip_atoi(char **ptr);