OSDN Git Service

include/
[pf3gnuchains/gcc-fork.git] / libiberty / xstrdup.c
index 5ddd2e9..fa12c96 100644 (file)
@@ -13,10 +13,10 @@ obtain memory.
 
 */
 
-#include <sys/types.h>
 #ifdef HAVE_CONFIG_H
 #include "config.h"
 #endif
+#include <sys/types.h>
 #ifdef HAVE_STRING_H
 #include <string.h>
 #else
@@ -28,10 +28,9 @@ obtain memory.
 #include "libiberty.h"
 
 char *
-xstrdup (s)
-  const char *s;
+xstrdup (const char *s)
 {
   register size_t len = strlen (s) + 1;
-  register char *ret = xmalloc (len);
+  register char *ret = XNEWVEC (char, len);
   return (char *) memcpy (ret, s, len);
 }