]> diplodocus.org Git - nmh/blob - h/m_setjmp.h
Fix a segfault that happens when using the -file option.
[nmh] / h / m_setjmp.h
1
2 /*
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.
6 *
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.
10 */
11
12 #include <setjmp.h>
13
14 int m_setjmp(jmp_buf);
15
16 int m_sigsetjmp(sigjmp_buf, int);