1 /* 2 * sys-setjmp - wrap system setjmp or compiler C try/catch mechanism 3 * 4 * Copyright(c) 2022 Glenn Strauss gstrauss()gluelogic.com All rights reserved 5 * License: BSD 3-clause (same as lighttpd) 6 */ 7 #ifndef LI_SYS_SETJMP_H 8 #define LI_SYS_SETJMP_H 9 #include "first.h" 10 11 #ifndef _MSC_VER 12 void sys_setjmp_sigbus (int sig); 13 #endif 14 15 off_t sys_setjmp_eval3(off_t(*cb)(void *, const void *, off_t), void *dst, const void *src, off_t len); 16 17 #endif /* LI_SYS_SETJMP_H */ 18