diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2002-02-01 15:46:29 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2002-02-01 15:46:29 (GMT) |
commit | 4892f2406f8cc3527bf0620c4a78f11d909afe8a (patch) | |
tree | a0271cd700ace29df6f9f9b3d16b887652265ba0 /Modules/grpmodule.c | |
parent | e75bfde7e9d2b2a8955eb4ce768a61a1affc3ac5 (diff) | |
download | cpython-4892f2406f8cc3527bf0620c4a78f11d909afe8a.zip cpython-4892f2406f8cc3527bf0620c4a78f11d909afe8a.tar.gz cpython-4892f2406f8cc3527bf0620c4a78f11d909afe8a.tar.bz2 |
Got rid of a few more NeXT ifdefs. The last, I think.
Diffstat (limited to 'Modules/grpmodule.c')
-rw-r--r-- | Modules/grpmodule.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/Modules/grpmodule.c b/Modules/grpmodule.c index 5dbcf98..a4b8ca3 100644 --- a/Modules/grpmodule.c +++ b/Modules/grpmodule.c @@ -27,13 +27,7 @@ mkgrent(struct group *p) v = Py_BuildValue("(sslO)", p->gr_name, p->gr_passwd, -#if defined(NeXT) && defined(_POSIX_SOURCE) && defined(__LITTLE_ENDIAN__) -/* Correct a bug present on Intel machines in NextStep 3.2 and 3.3; - for later versions you may have to remove this */ - (long)p->gr_short_pad, /* ugh-NeXT broke the padding */ -#else (long)p->gr_gid, -#endif w); Py_DECREF(w); return v; |