source: trunk/essentials/dev-lang/python/PC/os2emx/dllentry.c@ 3310

Last change on this file since 3310 was 3225, checked in by bird, 19 years ago

Python 2.5

File size: 726 bytes
Line 
1/*
2 * This is the entry point for the Python 2.3 core DLL.
3 */
4
5#define NULL 0
6
7#define REF(s) extern void s(); void *____ref_##s = &s;
8
9/* Make references to imported symbols to pull them from static library */
10REF(Py_Main);
11
12#include <signal.h>