diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2013-12-25 22:22:46 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2013-12-25 22:22:46 -0800 |
commit | f8d8c30be09b97dc2c78e4bfe31b84f5f9fc4fda (patch) | |
tree | afae129732b3436d7bea10fe710847aa73a14aba /configure | |
parent | 6e8aaedc1f3be2c9c7c3031499ad2b4bce05dfbc (diff) | |
download | txr-f8d8c30be09b97dc2c78e4bfe31b84f5f9fc4fda.tar.gz txr-f8d8c30be09b97dc2c78e4bfe31b84f5f9fc4fda.tar.bz2 txr-f8d8c30be09b97dc2c78e4bfe31b84f5f9fc4fda.zip |
Merry C++mas!
* configure: Avoid using "new" as identifier in signals test case.
* signal.c (set_sig_handler): Fix warning about { 0 } initializer.
(sig_mask): Avoid using "new" as identifier.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1450,9 +1450,9 @@ cat > conftest.c <<! int main(void) { sigjmp_buf jb; - static struct sigaction old, new; + static struct sigaction olda, newa; static sigset_t olds, news; - sigaction(0, &new, &old); + sigaction(0, &newa, &olda); sigprocmask(SIG_BLOCK, &news, &olds); if (!sigsetjmp(jb, 1)) siglongjmp(jb, 1); |