blob: 904ae4a57b5d5a115d05e54c9f4312c8b5549b69 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#pragma once
#include <stdint.h>
typedef uint32_t jmp_buf[10];
int setjmp(jmp_buf env);
void longjmp(jmp_buf env, int val);
/* vim: set sts=0 ts=4 sw=4 tw=0 noet :*/
|