Blame


1 fd04aace 2003-11-23 devnull #include <u.h>
2 fd04aace 2003-11-23 devnull #define NOPLAN9DEFINES
3 fd04aace 2003-11-23 devnull #include <libc.h>
4 fd04aace 2003-11-23 devnull
5 fd04aace 2003-11-23 devnull void
6 fd04aace 2003-11-23 devnull p9longjmp(p9jmp_buf buf, int val)
7 fd04aace 2003-11-23 devnull {
8 fd04aace 2003-11-23 devnull siglongjmp((void*)buf, val);
9 fd04aace 2003-11-23 devnull }
10 fd04aace 2003-11-23 devnull
11 fd04aace 2003-11-23 devnull void
12 fd04aace 2003-11-23 devnull p9notejmp(void *x, p9jmp_buf buf, int val)
13 fd04aace 2003-11-23 devnull {
14 fd04aace 2003-11-23 devnull USED(x);
15 fd04aace 2003-11-23 devnull siglongjmp((void*)buf, val);
16 fd04aace 2003-11-23 devnull }