summaryrefslogtreecommitdiff
path: root/bindings/linux/setjmp.h
blob: c4716e68081db085da21c1d527006f234cbd2c56 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/*
 * upb - a minimalist implementation of protocol buffers.
 *
 * Copyright (c) 2012 Google Inc.  See LICENSE for details.
 * Author: Josh Haberman <jhaberman@gmail.com>
 */

// Linux doesn't provide setjmp/longjmp, boo.

typedef void *jmp_buf[8];

extern int _setjmp(jmp_buf env);
__attribute__((__noreturn__)) extern void _longjmp(jmp_buf env, int val);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback