use namespace-safe __lseek for __stdio_seek instead of direct syscall
[musl] / src / string / strncpy.c
index 441ba03..545892e 100644 (file)
@@ -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);