Staging
v0.5.1
https://github.com/python/cpython
Revision 77a7a5a634c106a41eedf34fb69a3d77ba890577 authored by Fred Drake on 05 December 2003, 18:02:23 UTC, committed by Fred Drake on 05 December 2003, 18:02:23 UTC
1 parent cdda514
Raw File
Tip revision: 77a7a5a634c106a41eedf34fb69a3d77ba890577 authored by Fred Drake on 05 December 2003, 18:02:23 UTC
One more backported patch related to the removal of version numbers from
Tip revision: 77a7a5a
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