diff options
author | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-03-25 04:05:12 +0000 |
---|---|---|
committer | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-03-25 04:05:12 +0000 |
commit | 1cf8f41f58e597554a1f73d904c49bf12d71419e (patch) | |
tree | 5755195d1ce674183bfde67ec9b821bff117374f /libiberty/xstrdup.c | |
parent | 27e1789b96851c0b936564b990ba28752dbc7e4a (diff) | |
download | gcc-1cf8f41f58e597554a1f73d904c49bf12d71419e.tar.gz |
* xmemdup.c, xstrdup.c: Expose the tail call.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@97033 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libiberty/xstrdup.c')
-rw-r--r-- | libiberty/xstrdup.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/libiberty/xstrdup.c b/libiberty/xstrdup.c index 5aa084a7687..5ddd2e98a93 100644 --- a/libiberty/xstrdup.c +++ b/libiberty/xstrdup.c @@ -19,6 +19,10 @@ obtain memory. #endif #ifdef HAVE_STRING_H #include <string.h> +#else +# ifdef HAVE_STRINGS_H +# include <strings.h> +# endif #endif #include "ansidecl.h" #include "libiberty.h" @@ -29,6 +33,5 @@ xstrdup (s) { register size_t len = strlen (s) + 1; register char *ret = xmalloc (len); - memcpy (ret, s, len); - return ret; + return (char *) memcpy (ret, s, len); } |