diff options
author | Guido van Rossum <guido@python.org> | 1998-12-08 13:23:22 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1998-12-08 13:23:22 (GMT) |
commit | f0f3600d0bd931572df4ca66b8a4295dd2cf2b41 (patch) | |
tree | 54b82887061569ce5b3b641d23d941b9e03fcfcc /Include | |
parent | f484a3366b2e0e40b0577d652407f9b84a0ec208 (diff) | |
download | cpython-f0f3600d0bd931572df4ca66b8a4295dd2cf2b41.zip cpython-f0f3600d0bd931572df4ca66b8a4295dd2cf2b41.tar.gz cpython-f0f3600d0bd931572df4ca66b8a4295dd2cf2b41.tar.bz2 |
Undo the change here -- there's no point in declaring a static
function as DL_IMPORT()!
Diffstat (limited to 'Include')
-rw-r--r-- | Include/cStringIO.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/cStringIO.h b/Include/cStringIO.h index 53673ba..c1328de 100644 --- a/Include/cStringIO.h +++ b/Include/cStringIO.h @@ -106,7 +106,7 @@ static struct PycStringIO_CAPI { #define PycStringIO_OutputCheck(O) \ ((O)->ob_type==PycStringIO->OutputType) -static DL_IMPORT(void *) +static void * xxxPyCObject_Import(module_name, name) char *module_name; char *name; |