ref: 0a46f3b0d1e4fbeb49101ba0ce3101981c5c6513
dir: /src/libscc/xstrdup.c/
static char sccsid[] = "@(#) ./lib/scc/xstrdup.c";
#include <string.h>
#include <scc/scc.h>
char *
xstrdup(const char *s)
{
size_t len = strlen(s) + 1;
char *p = xmalloc(len);
return memcpy(p, s, len);
}