wm: teppich

ref: 963783fb08c7d5f93a4aa9759291eec6da28fc59
dir: /libc/strdup.c/

View raw version
#include <u.h>
#include <libc.h>
#include <mem.h>

char*
strdup(char *s)
{
	char *dup;

	dup = malloc(strlen(s) + 1); /* s + \0 */
	return strncpy(s, dup, strlen(s));
}