Search
lxdream.org :: lxdream/test/include/setjmp.h :: diff
lxdream 0.9.1
released Jun 29
Download Now
filename test/include/setjmp.h
changeset 185:6755a04c447f
author nkeynes
date Fri Dec 29 00:24:43 2006 +0000 (17 years ago)
permissions -rw-r--r--
last change Limit number of sectors read at once (linux driver seems to throw a hissy
fit if you request too many at a time)
file annotate diff log raw
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/test/include/setjmp.h Fri Dec 29 00:24:43 2006 +0000
1.3 @@ -0,0 +1,22 @@
1.4 +/*
1.5 + setjmp.h
1.6 + stubs for future use.
1.7 +*/
1.8 +
1.9 +#ifndef _SETJMP_H_
1.10 +#ifdef __cplusplus
1.11 +extern "C" {
1.12 +#endif
1.13 +#define _SETJMP_H_
1.14 +
1.15 +#include "_ansi.h"
1.16 +#include <machine/setjmp.h>
1.17 +
1.18 +void _EXFUN(longjmp,(jmp_buf __jmpb, int __retval));
1.19 +int _EXFUN(setjmp,(jmp_buf __jmpb));
1.20 +
1.21 +#ifdef __cplusplus
1.22 +}
1.23 +#endif
1.24 +#endif /* _SETJMP_H_ */
1.25 +
.