Staging
v0.5.1
https://github.com/python/cpython
Revision 67714629613159dbb24e584dcb1adbbc11027008 authored by Ezio Melotti on 13 March 2013, 00:27:00 UTC, committed by Ezio Melotti on 13 March 2013, 00:27:00 UTC
1 parent a7d64a6
Raw File
Tip revision: 67714629613159dbb24e584dcb1adbbc11027008 authored by Ezio Melotti on 13 March 2013, 00:27:00 UTC
#17402: avoid shadowing built-in map in mmap examples. Initial patch by Aman Shah.
Tip revision: 6771462
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