diff options
author | R. David Murray <rdmurray@bitdance.com> | 2010-10-18 00:15:31 (GMT) |
---|---|---|
committer | R. David Murray <rdmurray@bitdance.com> | 2010-10-18 00:15:31 (GMT) |
commit | 051176fde88331b182af3706672dc90874c5347b (patch) | |
tree | 8d5a8d3ed2e1fb0a49caf7adf30c8fd75cf4ab2f /Include | |
parent | 7cefc30d34e029fc58c986c89125ac455ecc1f3e (diff) | |
download | cpython-051176fde88331b182af3706672dc90874c5347b.zip cpython-051176fde88331b182af3706672dc90874c5347b.tar.gz cpython-051176fde88331b182af3706672dc90874c5347b.tar.bz2 |
#4499: silence compiler warning on AIX.
Patch from ActiveState.
Diffstat (limited to 'Include')
-rw-r--r-- | Include/token.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Include/token.h b/Include/token.h index 772a85e..9c19f5c 100644 --- a/Include/token.h +++ b/Include/token.h @@ -7,6 +7,8 @@ extern "C" { #endif +#undef TILDE /* Prevent clash of our definition with system macro. Ex AIX, ioctl.h */ + #define ENDMARKER 0 #define NAME 1 #define NUMBER 2 |