* tree-vrp.c (vrp_prop): Move class to earlier point in the file.
[official-gcc.git] / libiberty / xstrdup.c
blobfa12c96a3cd61e8f7ca919d3dd3ef74989871e3b
1 /* xstrdup.c -- Duplicate a string in memory, using xmalloc.
2 This trivial function is in the public domain.
3 Ian Lance Taylor, Cygnus Support, December 1995. */
5 /*
7 @deftypefn Replacement char* xstrdup (const char *@var{s})
9 Duplicates a character string without fail, using @code{xmalloc} to
10 obtain memory.
12 @end deftypefn
16 #ifdef HAVE_CONFIG_H
17 #include "config.h"
18 #endif
19 #include <sys/types.h>
20 #ifdef HAVE_STRING_H
21 #include <string.h>
22 #else
23 # ifdef HAVE_STRINGS_H
24 # include <strings.h>
25 # endif
26 #endif
27 #include "ansidecl.h"
28 #include "libiberty.h"
30 char *
31 xstrdup (const char *s)
33 register size_t len = strlen (s) + 1;
34 register char *ret = XNEWVEC (char, len);
35 return (char *) memcpy (ret, s, len);