diff options
author | Matthias Klose <doko@ubuntu.com> | 2010-04-25 21:18:48 (GMT) |
---|---|---|
committer | Matthias Klose <doko@ubuntu.com> | 2010-04-25 21:18:48 (GMT) |
commit | bada4c39a12c8cd75c5270a53b090a8bdef867ac (patch) | |
tree | 8890157db4acc4369a35cb4590612ab0922c98fa /pyconfig.h.in | |
parent | 44d3d7854b2c074f80bfee2e9523f246cf850bba (diff) | |
download | cpython-bada4c39a12c8cd75c5270a53b090a8bdef867ac.zip cpython-bada4c39a12c8cd75c5270a53b090a8bdef867ac.tar.gz cpython-bada4c39a12c8cd75c5270a53b090a8bdef867ac.tar.bz2 |
configure.in: Avoid autoconf warning: Assume C89 semantics that
RETSIGTYPE is always void (issue #8510).
Diffstat (limited to 'pyconfig.h.in')
-rw-r--r-- | pyconfig.h.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyconfig.h.in b/pyconfig.h.in index 00a9019..d3a8786 100644 --- a/pyconfig.h.in +++ b/pyconfig.h.in @@ -958,7 +958,7 @@ /* Define as the size of the unicode type. */ #undef Py_UNICODE_SIZE -/* Define as the return type of signal handlers (`int' or `void'). */ +/* assume C89 semantics that RETSIGTYPE is always void */ #undef RETSIGTYPE /* Define if setpgrp() must be called as setpgrp(0, 0). */ |