mirror of
https://github.com/rtlduino/RTL8710AF_GCC.git
synced 2024-11-26 10:54:14 +00:00
21 lines
269 B
C
21 lines
269 B
C
|
/*
|
||
|
setjmp.h
|
||
|
stubs for future use.
|
||
|
*/
|
||
|
|
||
|
#ifndef _SETJMP_H_
|
||
|
#define _SETJMP_H_
|
||
|
|
||
|
#include "_ansi.h"
|
||
|
#include <machine/setjmp.h>
|
||
|
|
||
|
_BEGIN_STD_C
|
||
|
|
||
|
void _EXFUN(longjmp,(jmp_buf __jmpb, int __retval));
|
||
|
int _EXFUN(setjmp,(jmp_buf __jmpb));
|
||
|
|
||
|
_END_STD_C
|
||
|
|
||
|
#endif /* _SETJMP_H_ */
|
||
|
|