Staging
v0.5.1
https://github.com/python/cpython
Revision 8530e8590f4d31b5af66e43bd271b0ea1658ff3e authored by Amaury Forgeot d'Arc on 09 September 2008, 07:28:22 UTC, committed by Amaury Forgeot d'Arc on 09 September 2008, 07:28:22 UTC
1 parent 14b7851
Raw File
Tip revision: 8530e8590f4d31b5af66e43bd271b0ea1658ff3e authored by Amaury Forgeot d'Arc on 09 September 2008, 07:28:22 UTC
Revert r33661, which broke all buildbots.
Tip revision: 8530e85
strdup.c
/* strdup() replacement (from stdwin, if you must know) */

#include "pgenheaders.h"

char *
strdup(const char *str)
{
	if (str != NULL) {
		register char *copy = malloc(strlen(str) + 1);
		if (copy != NULL)
			return strcpy(copy, str);
	}
	return NULL;
}
back to top