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 Sun Aug 06 06:13:51 2006 +0000 (17 years ago)
permissions -rw-r--r--
last change First pass at implementing the tile clip. Reasonably accurate wrt basic
understanding of how its supposed to work, not so accurate wrt actual
hardware behaviour
file annotate diff log raw
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/test/include/setjmp.h Sun Aug 06 06:13:51 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 +
.