OSDN Git Service

* xmemdup.c, xstrdup.c: Expose the tail call.
authorghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 25 Mar 2005 04:05:12 +0000 (04:05 +0000)
committerghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 25 Mar 2005 04:05:12 +0000 (04:05 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@97033 138bc75d-0d04-0410-961f-82ee72b054a4

libiberty/ChangeLog
libiberty/xmemdup.c
libiberty/xstrdup.c

index 0ab2ec9..231bab3 100644 (file)
@@ -1,3 +1,7 @@
+2005-03-24  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
+
+       * xmemdup.c, xstrdup.c: Expose the tail call.
+
 2005-03-09  Mark Mitchell  <mark@codesourcery.com>
 
        * configure.ac (funcs): Add gettimeofday.
index 9e9d66b..0dae37d 100644 (file)
@@ -24,6 +24,10 @@ allocated, the remaining memory is zeroed.
 #include <sys/types.h> /* For size_t. */
 #ifdef HAVE_STRING_H
 #include <string.h>
+#else
+# ifdef HAVE_STRINGS_H
+#  include <strings.h>
+# endif
 #endif
 
 PTR
@@ -33,6 +37,5 @@ xmemdup (input, copy_size, alloc_size)
   size_t alloc_size;
 {
   PTR output = xcalloc (1, alloc_size);
-  memcpy (output, input, copy_size);
-  return output;
+  return (PTR) memcpy (output, input, copy_size);
 }
index 5aa084a..5ddd2e9 100644 (file)
@@ -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);
 }