blob: 9168b4fe5d3bdb29ff578bdf62cf0f9f84919669 [file] [log] [blame]
/* strdup() replacement (from stdwin, if you must know) */
#include "pgenheaders.h"
char *
strdup(str)
const char *str;
{
if (str != NULL) {
register char *copy = malloc(strlen(str) + 1);
if (copy != NULL)
return strcpy(copy, str);
}
return NULL;
}