summaryrefslogtreecommitdiffstats
path: root/Modules/fpetestmodule.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1998-12-10 16:49:28 (GMT)
committerGuido van Rossum <guido@python.org>1998-12-10 16:49:28 (GMT)
commit5de54208a54ae24374f2cfe170b98e76db07d7b7 (patch)
tree0ca98a4dc38abed6f071c04b991208d0bc950b28 /Modules/fpetestmodule.c
parentfba0ba2a6f4ce344de5c3e6f56b579873ca2eb61 (diff)
downloadcpython-5de54208a54ae24374f2cfe170b98e76db07d7b7.zip
cpython-5de54208a54ae24374f2cfe170b98e76db07d7b7.tar.gz
cpython-5de54208a54ae24374f2cfe170b98e76db07d7b7.tar.bz2
Needed to add DL_EXPORT to (redundant?) extern decl of module init function.
Diffstat (limited to 'Modules/fpetestmodule.c')
-rw-r--r--Modules/fpetestmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/fpetestmodule.c b/Modules/fpetestmodule.c
index c1e87ce..31c2f22 100644
--- a/Modules/fpetestmodule.c
+++ b/Modules/fpetestmodule.c
@@ -44,7 +44,7 @@
#include "Python.h"
static PyObject *fpe_error;
-void initfpetest(void);
+DL_EXPORT(void) initfpetest(void);
static PyObject *test(PyObject *self,PyObject *args);
static double db0(double);
static double overflow(double);