diff options
author | Guido van Rossum <guido@python.org> | 1998-12-04 18:48:25 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1998-12-04 18:48:25 (GMT) |
commit | 43466ec7b07de6bcad016bec60839cd6079c5a9c (patch) | |
tree | ec3bf3e1dfbf9535fa56e153e200f6491f34a6b0 /Include/pydebug.h | |
parent | b241b67b8954b0679377af00d668e3dc92f4c858 (diff) | |
download | cpython-43466ec7b07de6bcad016bec60839cd6079c5a9c.zip cpython-43466ec7b07de6bcad016bec60839cd6079c5a9c.tar.gz cpython-43466ec7b07de6bcad016bec60839cd6079c5a9c.tar.bz2 |
Add DL_IMPORT(returntype) for all officially exported functions.
Diffstat (limited to 'Include/pydebug.h')
-rw-r--r-- | Include/pydebug.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/pydebug.h b/Include/pydebug.h index d41a1e8..a848a15 100644 --- a/Include/pydebug.h +++ b/Include/pydebug.h @@ -44,7 +44,7 @@ extern DL_IMPORT(int) Py_UseClassExceptionsFlag; extern DL_IMPORT(int) Py_FrozenFlag; extern DL_IMPORT(int) Py_TabcheckFlag; -void Py_FatalError Py_PROTO((char *)); +DL_IMPORT(void) Py_FatalError Py_PROTO((char *)); #ifdef __cplusplus } |