aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.2.1-5666.3/libiberty/strdup.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.2.1-5666.3/libiberty/strdup.c')
-rw-r--r--gcc-4.2.1-5666.3/libiberty/strdup.c27
1 files changed, 0 insertions, 27 deletions
diff --git a/gcc-4.2.1-5666.3/libiberty/strdup.c b/gcc-4.2.1-5666.3/libiberty/strdup.c
deleted file mode 100644
index 78c2093b6..000000000
--- a/gcc-4.2.1-5666.3/libiberty/strdup.c
+++ /dev/null
@@ -1,27 +0,0 @@
-/*
-
-@deftypefn Supplemental char* strdup (const char *@var{s})
-
-Returns a pointer to a copy of @var{s} in memory obtained from
-@code{malloc}, or @code{NULL} if insufficient memory was available.
-
-@end deftypefn
-
-*/
-
-#include <ansidecl.h>
-#include <stddef.h>
-
-extern size_t strlen (const char*);
-extern PTR malloc (size_t);
-extern PTR memcpy (PTR, const PTR, size_t);
-
-char *
-strdup(const char *s)
-{
- size_t len = strlen (s) + 1;
- char *result = (char*) malloc (len);
- if (result == (char*) 0)
- return (char*) 0;
- return (char*) memcpy (result, s, len);
-}