3 * m_setjmp.h -- Wraps setjmp() and sigsetjmp(), to help prevent warnings
4 * -- about arguments and variables that might be clobbered by
5 * -- a setjmp call with gcc -Wclobbered.
7 * This code is Copyright (c) 2012, by the authors of nmh. See the
8 * COPYRIGHT file in the root directory of the nmh distribution for
9 * complete copyright information.
12 #include <h/m_setjmp.h>
16 m_setjmp(jmp_buf env) {
22 m_sigsetjmp(sigjmp_buf env, int savesigs) {
23 return sigsetjmp(env, savesigs);