Commit 5902803b authored by Guido van Rossum's avatar Guido van Rossum

Needed more includes...

parent 62bed7a0
/* strdup() replacement (from stdwin, if you must know) */
#include "config.h"
#include <string.h>
#include "myproto.h"
#include "mymalloc.h"
#ifdef HAVE_STDLIB_H
#include <stdlib.h>
#else
extern ANY *malloc Py_PROTO((size_t));
#endif
#include <string.h>
char *
strdup(str)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment