From a2905273766bbbebb87274c87b62772cdfaeb180 Mon Sep 17 00:00:00 2001 From: Mark Hammond Date: Mon, 29 Jul 2002 13:42:14 +0000 Subject: Excise DL_IMPORT/EXPORT from object.h, and related files. This patch also adds 'extern' to PyAPI_DATA rather than at each declaration, as discussed with Tim and Guido. --- Python/exceptions.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Python/exceptions.c') diff --git a/Python/exceptions.c b/Python/exceptions.c index afb6a7bf38..934850aa06 100644 --- a/Python/exceptions.c +++ b/Python/exceptions.c @@ -1050,7 +1050,7 @@ static struct { -DL_EXPORT(void) +void _PyExc_Init(void) { char *modulename = "exceptions"; @@ -1146,7 +1146,7 @@ _PyExc_Init(void) } -DL_EXPORT(void) +void _PyExc_Fini(void) { int i; -- cgit v1.2.1