aboutsummaryrefslogtreecommitdiff
path: root/newlib/libc/stdlib/strdup.c
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/stdlib/strdup.c')
-rw-r--r--newlib/libc/stdlib/strdup.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/newlib/libc/stdlib/strdup.c b/newlib/libc/stdlib/strdup.c
deleted file mode 100644
index dbb069264..000000000
--- a/newlib/libc/stdlib/strdup.c
+++ /dev/null
@@ -1,13 +0,0 @@
-#ifndef _REENT_ONLY
-
-#include <reent.h>
-#include <stdlib.h>
-#include <string.h>
-
-char *
-_DEFUN (strdup, (str), _CONST char *str)
-{
- return _strdup_r (_REENT, str);
-}
-
-#endif /* !_REENT_ONLY */