diff options
author | Christian Heimes <christian@cheimes.de> | 2008-01-31 23:08:23 (GMT) |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2008-01-31 23:08:23 (GMT) |
commit | 951cc0f474e4757e6954f0435952804211c5637c (patch) | |
tree | 4e04f1f90d551a9fdd8b6936b7523fae0ce0a0ee /pyconfig.h.in | |
parent | 105be7725b88ecef826ac07392a4236bae934bf6 (diff) | |
download | cpython-951cc0f474e4757e6954f0435952804211c5637c.zip cpython-951cc0f474e4757e6954f0435952804211c5637c.tar.gz cpython-951cc0f474e4757e6954f0435952804211c5637c.tar.bz2 |
Fixed bug #1983: Return from fork() is pid_t, not int
Diffstat (limited to 'pyconfig.h.in')
-rw-r--r-- | pyconfig.h.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pyconfig.h.in b/pyconfig.h.in index ad89148..35a873a 100644 --- a/pyconfig.h.in +++ b/pyconfig.h.in @@ -869,6 +869,9 @@ /* The number of bytes in an off_t. */ #undef SIZEOF_OFF_T +/* The size of `pid_t', as computed by sizeof. */ +#undef SIZEOF_PID_T + /* The number of bytes in a pthread_t. */ #undef SIZEOF_PTHREAD_T |