Staging
v0.5.1
https://github.com/python/cpython
Revision 7afa64e260ab14e164351fb2465d60298d2af5fa authored by Hye-Shik Chang on 27 October 2004, 03:12:05 UTC, committed by Hye-Shik Chang on 27 October 2004, 03:12:05 UTC
1 parent 1816d79
Raw File
Tip revision: 7afa64e260ab14e164351fb2465d60298d2af5fa authored by Hye-Shik Chang on 27 October 2004, 03:12:05 UTC
Add a comment explains why we should modify mtime here.
Tip revision: 7afa64e
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