repo.or.cz
/
zpugcc
/
jano.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
fixes for host gcc 4.6.1
[zpugcc/jano.git]
/
toolchain
/
gcc
/
newlib
/
libc
/
include
/
setjmp.h
blob
c958d9042997144e503421277ea84d3c8fe19867
1
/*
2
setjmp.h
3
stubs for future use.
4
*/
5
6
#ifndef _SETJMP_H_
7
#define _SETJMP_H_
8
9
#include
"_ansi.h"
10
#include <machine/setjmp.h>
11
12
_BEGIN_STD_C
13
14
void
_EXFUN
(
longjmp
,(
jmp_buf
__jmpb
,
int
__retval
));
15
int
_EXFUN
(
setjmp
,(
jmp_buf
__jmpb
));
16
17
_END_STD_C
18
19
#endif
/* _SETJMP_H_ */
20