From: Mark Dickinson Date: Sat, 3 Apr 2010 14:24:58 +0000 (+0000) Subject: Remove unused define. X-Git-Tag: v3.2a1~1258 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=77e2b67971e240a1a66a29dfe87448f83f7d0014;p=python Remove unused define. --- diff --git a/Modules/_struct.c b/Modules/_struct.c index 6a89d8c403..7f6e305134 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