Kaydet (Commit) f2615264 authored tarafından Guido van Rossum's avatar Guido van Rossum

Need to add default decl of DL_IMPORT, for mymalloc.h

üst 3886bb69
......@@ -32,6 +32,12 @@ PERFORMANCE OF THIS SOFTWARE.
/* Check for interrupts */
#include "config.h"
/* config.h may or may not define DL_IMPORT */
#ifndef DL_IMPORT /* declarations for DLL import/export */
#define DL_IMPORT(RTYPE) RTYPE
#endif
#include "myproto.h"
#include "mymalloc.h" /* For ANY */
#include "intrcheck.h"
......
......@@ -37,6 +37,11 @@ PERFORMANCE OF THIS SOFTWARE.
#include "config.h"
/* config.h may or may not define DL_IMPORT */
#ifndef DL_IMPORT /* declarations for DLL import/export */
#define DL_IMPORT(RTYPE) RTYPE
#endif
#include <stdio.h>
#ifdef HAVE_STDLIB_H
......
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