diff options
author | Skip Montanaro <skip@pobox.com> | 2004-02-10 16:50:21 (GMT) |
---|---|---|
committer | Skip Montanaro <skip@pobox.com> | 2004-02-10 16:50:21 (GMT) |
commit | 7befb9966e1435475a9d2e9d3cc3670564ce77aa (patch) | |
tree | 4e33029bfd72bb8eaa72f9fdd5c1712e5ecdb97b /Include/structmember.h | |
parent | 05eb40128e305e07527d317e3964e8a1160d0961 (diff) | |
download | cpython-7befb9966e1435475a9d2e9d3cc3670564ce77aa.zip cpython-7befb9966e1435475a9d2e9d3cc3670564ce77aa.tar.gz cpython-7befb9966e1435475a9d2e9d3cc3670564ce77aa.tar.bz2 |
remove support for missing ANSI C header files (limits.h, stddef.h, etc).
Diffstat (limited to 'Include/structmember.h')
-rw-r--r-- | Include/structmember.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Include/structmember.h b/Include/structmember.h index 3f4cfe0..015ca19 100644 --- a/Include/structmember.h +++ b/Include/structmember.h @@ -7,9 +7,7 @@ extern "C" { /* Interface to map C struct members to Python object attributes */ -#ifdef HAVE_STDDEF_H #include <stddef.h> /* For offsetof */ -#endif /* The offsetof() macro calculates the offset of a structure member in its structure. Unfortunately this cannot be written down |