diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2002-06-26 20:41:30 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2002-06-26 20:41:30 (GMT) |
commit | c5601f48393eab55c5b99e5b0ba22d9cd27baaf3 (patch) | |
tree | a008ef6d2926797aff7ac683b956f92883297683 /Modules/pypcre.c | |
parent | 3a96702b2bd231cad8b8989ce66715a65982fc5e (diff) | |
download | cpython-c5601f48393eab55c5b99e5b0ba22d9cd27baaf3.zip cpython-c5601f48393eab55c5b99e5b0ba22d9cd27baaf3.tar.gz cpython-c5601f48393eab55c5b99e5b0ba22d9cd27baaf3.tar.bz2 |
Undefine DPRINTF before defining it, there was a conflict with some other
definition.
Diffstat (limited to 'Modules/pypcre.c')
-rw-r--r-- | Modules/pypcre.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Modules/pypcre.c b/Modules/pypcre.c index 5f21005..a6ba17c 100644 --- a/Modules/pypcre.c +++ b/Modules/pypcre.c @@ -577,6 +577,7 @@ restrictions: of #ifdef inline, and there are *still* stupid compilers about that don't like indented pre-processor statements. I suppose it's only been 10 years... */ +#undef DPRINTF #ifdef DEBUG #define DPRINTF(p) printf p #else |