Staging
v0.5.1
https://github.com/python/cpython
Revision b2742ba5f9ce8a6108202e0645662f2b58da423b authored by Serhiy Storchaka on 05 December 2018, 22:02:10 UTC, committed by GitHub on 05 December 2018, 22:02:10 UTC
(cherry picked from commit 67a93b3a0b3814e97ef9d077b21325fc8ce351b2)
1 parent abe74fe
Raw File
Tip revision: b2742ba5f9ce8a6108202e0645662f2b58da423b authored by Serhiy Storchaka on 05 December 2018, 22:02:10 UTC
[2.7] bpo-34738: Add directory entries in ZIP files created by distutils. (GH-9419). (GH-10950)
Tip revision: b2742ba
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