diff options
| author | Jack Jansen <jack.jansen@cwi.nl> | 2002-06-26 20:41:30 +0000 |
|---|---|---|
| committer | Jack Jansen <jack.jansen@cwi.nl> | 2002-06-26 20:41:30 +0000 |
| commit | c5601f48393eab55c5b99e5b0ba22d9cd27baaf3 (patch) | |
| tree | a008ef6d2926797aff7ac683b956f92883297683 | |
| parent | 3a96702b2bd231cad8b8989ce66715a65982fc5e (diff) | |
| download | cpython-git-c5601f48393eab55c5b99e5b0ba22d9cd27baaf3.tar.gz | |
Undefine DPRINTF before defining it, there was a conflict with some other
definition.
| -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 5f21005360..a6ba17c756 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 |
