mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
12 lines
175 B
C
12 lines
175 B
C
#ifndef __SETJMP_H
|
|
#define __SETJMP_H
|
|
|
|
#define _JBLEN 19
|
|
|
|
typedef int jmp_buf[_JBLEN];
|
|
|
|
int setjmp(jmp_buf env);
|
|
void longjmp(jmp_buf env, int val);
|
|
|
|
#endif /* __SETJMP_H */
|
|
|