/***--------------------------------------------------------------------- Modified and adapted for the Lazy Virtual Machine by Daan Leijen. Modifications copyright 2001, Daan Leijen. This (modified) file is distributed under the terms of the GNU Library General Public License. ---------------------------------------------------------------------***/ /* $Id: sigjmpbuf.c 286 2012-11-02 12:21:03Z hage0101 $ */ #include struct longjmp_buffer { sigjmp_buf buf; }; int main() { return 0; }