code: 9ferno

ref: 65e8434fe2b4b44e44cda2870c444e86a9407752
dir: /lib9/strdup.c/

View raw version
#include "lib9.h"

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

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