ref: 5c59ce4b790db825f40a8b7de0e7086abb14eccb
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); }