/*
 *	strdup - duplicate a string and return a pointer to the copy
 *	Not included in some libraries.
 */

#include "sysdep.h"

char *
strdup(s)
char *s;
{
	register int l;

	l = strlen(s);

	return(strcpy(mmalloc((long)l+1), s));
}
