summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1998-12-07 14:28:47 (GMT)
committerGuido van Rossum <guido@python.org>1998-12-07 14:28:47 (GMT)
commit9c1201fe39c21ecc238daea82460e0ae85ce11f3 (patch)
tree82a1ede124d712f56891ac2293333ea00849d9f0 /Modules
parent5c3b384a851b5f8f9a4f9a39a6869528d4444658 (diff)
downloadcpython-9c1201fe39c21ecc238daea82460e0ae85ce11f3.zip
cpython-9c1201fe39c21ecc238daea82460e0ae85ce11f3.tar.gz
cpython-9c1201fe39c21ecc238daea82460e0ae85ce11f3.tar.bz2
Py_Main() must be DL_EXPORT too.
Diffstat (limited to 'Modules')
-rw-r--r--Modules/main.c2
-rw-r--r--Modules/python.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/Modules/main.c b/Modules/main.c
index 757aa77..36b2be9 100644
--- a/Modules/main.c
+++ b/Modules/main.c
@@ -94,7 +94,7 @@ PYTHONHOME : alternate <prefix> directory (or <prefix>%c<exec_prefix>).\n\
/* Main program */
-int
+DL_EXPORT(int)
Py_Main(argc, argv)
int argc;
char **argv;
diff --git a/Modules/python.c b/Modules/python.c
index e1a5d29..d04d1dc 100644
--- a/Modules/python.c
+++ b/Modules/python.c
@@ -2,7 +2,7 @@
#include "Python.h"
-extern int Py_Main();
+extern DL_EXPORT(int) Py_Main();
int
main(argc, argv)