setjmp.h 393 B

1234567891011121314151617
  1. /*
  2. * setjmp.h - restore calling environment
  3. *
  4. * (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
  5. * See the copyright notice in the ACK home directory, in the file "Copyright".
  6. */
  7. /* $Header$ */
  8. #ifndef _SETJMP_HEADER_
  9. #define _SETJMP_HEADER_
  10. typedef char jmp_buf[256];
  11. int setjmp(jmp_buf env);
  12. void longjmp(jmp_buf env, int val);
  13. #endif /* _SETJMP_HEADER_ */