diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2010-04-03 14:24:58 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2010-04-03 14:24:58 (GMT) |
commit | 77e2b67971e240a1a66a29dfe87448f83f7d0014 (patch) | |
tree | 33dd91b6ea2686688ddc803a933c6260eb271617 /Modules | |
parent | 98127c37167a6735dba576819514c334c89e5b9c (diff) | |
download | cpython-77e2b67971e240a1a66a29dfe87448f83f7d0014.zip cpython-77e2b67971e240a1a66a29dfe87448f83f7d0014.tar.gz cpython-77e2b67971e240a1a66a29dfe87448f83f7d0014.tar.bz2 |
Remove unused define.
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/_struct.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Modules/_struct.c b/Modules/_struct.c index 6a89d8c..7f6e305 100644 --- a/Modules/_struct.c +++ b/Modules/_struct.c @@ -132,7 +132,6 @@ get_long(PyObject *v, long *p) /* Same, but handling unsigned long */ -#ifndef PY_STRUCT_OVERFLOW_MASKING static int get_ulong(PyObject *v, unsigned long *p) { @@ -153,7 +152,6 @@ get_ulong(PyObject *v, unsigned long *p) *p = x; return 0; } -#endif /* PY_STRUCT_OVERFLOW_MASKING */ #ifdef HAVE_LONG_LONG |