4G_module/tools/toolchain/gcc-arm-none-eabi/arm-none-eabi/include/setjmp.h

26 lines
361 B
C
Raw Normal View History

2024-09-02 17:54:29 +08:00
/*
setjmp.h
stubs for future use.
*/
#ifndef _SETJMP_H_
#define _SETJMP_H_
#include "_ansi.h"
#include <machine/setjmp.h>
_BEGIN_STD_C
#ifdef __GNUC__
void longjmp (jmp_buf __jmpb, int __retval)
__attribute__ ((__noreturn__));
#else
void longjmp (jmp_buf __jmpb, int __retval);
#endif
int setjmp (jmp_buf __jmpb);
_END_STD_C
#endif /* _SETJMP_H_ */