summaryrefslogtreecommitdiff
path: root/src/string/strncpy.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/string/strncpy.c')
-rw-r--r--src/string/strncpy.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/string/strncpy.c b/src/string/strncpy.c
index 441ba033..545892e6 100644
--- a/src/string/strncpy.c
+++ b/src/string/strncpy.c
@@ -1,7 +1,5 @@
#include <string.h>
-char *__stpncpy(char *, const char *, size_t);
-
char *strncpy(char *restrict d, const char *restrict s, size_t n)
{
__stpncpy(d, s, n);