diff options
author | Marc-André Lemburg <mal@egenix.com> | 2000-09-30 17:34:31 (GMT) |
---|---|---|
committer | Marc-André Lemburg <mal@egenix.com> | 2000-09-30 17:34:31 (GMT) |
commit | ff50ad53a92b3ce35f1f6a810a808aba02594bfd (patch) | |
tree | cfe5ed5fc7da23dce29816a08d2dc376a3819d60 /Modules | |
parent | 3a5a2bd486fd3b5b001a575c2b9869a0cd6910a2 (diff) | |
download | cpython-ff50ad53a92b3ce35f1f6a810a808aba02594bfd.zip cpython-ff50ad53a92b3ce35f1f6a810a808aba02594bfd.tar.gz cpython-ff50ad53a92b3ce35f1f6a810a808aba02594bfd.tar.bz2 |
Fix header file usage so that NULL is defined. NULL is needed by
unicodedata_db.h.
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/unicodedatabase.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/unicodedatabase.c b/Modules/unicodedatabase.c index 80a36cb..1a835b1 100644 --- a/Modules/unicodedatabase.c +++ b/Modules/unicodedatabase.c @@ -11,7 +11,7 @@ ------------------------------------------------------------------------ */ -#include <stdlib.h> +#include "Python.h" #include "unicodedatabase.h" /* read the actual data from a separate file! */ |