diff options
author | Guido van Rossum <guido@python.org> | 1998-12-10 16:49:28 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1998-12-10 16:49:28 +0000 |
commit | 5de54208a54ae24374f2cfe170b98e76db07d7b7 (patch) | |
tree | 0ca98a4dc38abed6f071c04b991208d0bc950b28 /Modules/fpetestmodule.c | |
parent | fba0ba2a6f4ce344de5c3e6f56b579873ca2eb61 (diff) | |
download | cpython-git-5de54208a54ae24374f2cfe170b98e76db07d7b7.tar.gz |
Needed to add DL_EXPORT to (redundant?) extern decl of module init function.
Diffstat (limited to 'Modules/fpetestmodule.c')
-rw-r--r-- | Modules/fpetestmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/fpetestmodule.c b/Modules/fpetestmodule.c index c1e87cec5c..31c2f22215 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); |