summaryrefslogtreecommitdiff
path: root/Include/intrcheck.h
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1998-12-04 18:48:25 +0000
committerGuido van Rossum <guido@python.org>1998-12-04 18:48:25 +0000
commit6b5ad775859d0c41a25f0290f37954dcd2ccc484 (patch)
tree2dc4d5feb910b8303a091e3929fd8b72e29bd132 /Include/intrcheck.h
parent27913d4a7d3d5001643ba80ba86b432781669717 (diff)
downloadcpython-6b5ad775859d0c41a25f0290f37954dcd2ccc484.tar.gz
Add DL_IMPORT(returntype) for all officially exported functions.
Diffstat (limited to 'Include/intrcheck.h')
-rw-r--r--Include/intrcheck.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Include/intrcheck.h b/Include/intrcheck.h
index 8566051690..6bff23e033 100644
--- a/Include/intrcheck.h
+++ b/Include/intrcheck.h
@@ -35,9 +35,9 @@ PERFORMANCE OF THIS SOFTWARE.
******************************************************************/
-extern int PyOS_InterruptOccurred Py_PROTO((void));
-extern void PyOS_InitInterrupts Py_PROTO((void));
-void PyOS_AfterFork Py_PROTO((void));
+extern DL_IMPORT(int) PyOS_InterruptOccurred Py_PROTO((void));
+extern DL_IMPORT(void) PyOS_InitInterrupts Py_PROTO((void));
+DL_IMPORT(void) PyOS_AfterFork Py_PROTO((void));
#ifdef __cplusplus
}