source: trunk/sys/dietlibc/include/setjmp.h @ 1

Last change on this file since 1 was 1, checked in by alain, 7 years ago

First import

File size: 1.1 KB
Line 
1/*
2   This file is part of AlmOS.
3 
4   AlmOS is free software; you can redistribute it and/or modify it
5   under the terms of the GNU General Public License as published by
6   the Free Software Foundation; either version 2 of the License, or
7   (at your option) any later version.
8 
9   AlmOS is distributed in the hope that it will be useful, but
10   WITHOUT ANY WARRANTY; without even the implied warranty of
11   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12   General Public License for more details.
13 
14   You should have received a copy of the GNU General Public License
15   along with AlmOS; if not, write to the Free Software Foundation,
16   Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
17 
18   UPMC / LIP6 / SOC (c) 2009
19   Copyright Ghassan Almaless <ghassan.almaless@gmail.com>
20*/
21
22#ifndef _SETJMP_H_
23#define _SETJMP_H_
24
25#ifdef USR_LIB_COMPILER
26#include <cpu-jmp.h>
27#else
28#include <sys/cpu-jmp.h>
29#endif
30
31typedef struct __jmp_buffer_s jmp_buf[1];
32
33#define setjmp(env)         (__setjmp((env)))
34#define longjmp(env, val)   __longjmp(env, val)
35
36
37
38#endif  /* _SETJMP_H_ */
Note: See TracBrowser for help on using the repository browser.