summaryrefslogtreecommitdiffstats
path: root/newlib/libc/string/strndup.c
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/string/strndup.c')
-rw-r--r--newlib/libc/string/strndup.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/newlib/libc/string/strndup.c b/newlib/libc/string/strndup.c
deleted file mode 100644
index caa1b68b7..000000000
--- a/newlib/libc/string/strndup.c
+++ /dev/null
@@ -1,16 +0,0 @@
-#ifndef _REENT_ONLY
-
-#include <_ansi.h>
-#include <reent.h>
-#include <stdlib.h>
-#include <string.h>
-
-char *
-_DEFUN (strndup, (str, n),
- _CONST char *str _AND
- size_t n)
-{
- return _strndup_r (_REENT, str, n);
-}
-
-#endif /* !_REENT_ONLY */