summaryrefslogtreecommitdiff
path: root/libc/include/setjmp.h
blob: 8fc8a12a738e92923223a89573f2659eee67ec04 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef __SETJMP_H__
#define __SETJMP_H__

#include <stdint.h>

typedef struct {
    uint32_t buf[32];
} jmp_buf;

int setjmp(jmp_buf env);
void longjmp(jmp_buf env, int val);

#endif