1/*
2 * Copyright 2009 Jonas Sundstr��m, jonas@kirilla.com
3 * Copyright 2005 Ingo Weinhold, bonefish@cs.tu-berlin.de
4 * All rights reserved. Distributed under the terms of the MIT License.
5 */
6#ifndef SETJMP_INTERNAL_H
7#define SETJMP_INTERNAL_H
8
9/* These are the fields of the __jmp_regs structure */
10#define JMP_REGS_R1		0
11#define JMP_REGS_R2		4
12#define JMP_REGS_R3		8
13
14
15#warning DEFINE JMP_REGS
16
17
18#define FUNCTION(x) .global x; .type x,@function; x
19
20#endif	/* SETJMP_INTERNAL_H */
21