code: purgatorio

ref: 63392be12a1a657419af2d2966995428721f18f3
dir: /libkern/strdup.c/

View raw version
#include <lib9.h>

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

	os = malloc(strlen(s) + 1);
	if(os == 0)
		return 0;
	return strcpy(os, s);
}