* config/i386/i386.c (ix86_compute_frame_size): Allow
[official-gcc.git] / libiberty / strdup.c
blob1785b34f2745a1e43d61cf42bbec1862506dd2fb
1 char *
2 strdup(s)
3 char *s;
5 char *result = (char*)malloc(strlen(s) + 1);
6 if (result == (char*)0)
7 return (char*)0;
8 strcpy(result, s);
9 return result;