diff options
author | Thomas Wouters <thomas@python.org> | 2000-07-25 12:56:38 (GMT) |
---|---|---|
committer | Thomas Wouters <thomas@python.org> | 2000-07-25 12:56:38 (GMT) |
commit | 334fb8985bc126f62af65669150c30787eabddd9 (patch) | |
tree | 114a52660cda84eb69f1fe8c24d0df7458dbe875 /Modules/dlmodule.c | |
parent | bf680266da23b0b95a03d2b7ea5da493d341a562 (diff) | |
download | cpython-334fb8985bc126f62af65669150c30787eabddd9.zip cpython-334fb8985bc126f62af65669150c30787eabddd9.tar.gz cpython-334fb8985bc126f62af65669150c30787eabddd9.tar.bz2 |
Use 'void' directly instead of the ANY #define, now that all code is ANSI C.
Leave the actual #define in for API compatibility.
Diffstat (limited to 'Modules/dlmodule.c')
-rw-r--r-- | Modules/dlmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/dlmodule.c b/Modules/dlmodule.c index 09bd9d3..18e1458 100644 --- a/Modules/dlmodule.c +++ b/Modules/dlmodule.c @@ -18,7 +18,7 @@ redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. #define RTLD_LAZY 1 #endif -typedef ANY *PyUnivPtr; +typedef void *PyUnivPtr; typedef struct { PyObject_HEAD PyUnivPtr *dl_handle; |