source: trunk/libs/newlib/src/newlib/libc/include/setjmp.h @ 444

Last change on this file since 444 was 444, checked in by satin@…, 6 years ago

add newlib,libalmos-mkh, restructure shared_syscalls.h and mini-libc

File size: 361 bytes
Line 
1/*
2        setjmp.h
3        stubs for future use.
4*/
5
6#ifndef _SETJMP_H_
7#define _SETJMP_H_
8
9#include "_ansi.h"
10#include <machine/setjmp.h>
11
12_BEGIN_STD_C
13
14#ifdef __GNUC__
15void    longjmp (jmp_buf __jmpb, int __retval)
16                        __attribute__ ((__noreturn__));
17#else
18void    longjmp (jmp_buf __jmpb, int __retval);
19#endif
20int     setjmp (jmp_buf __jmpb);
21
22_END_STD_C
23
24#endif /* _SETJMP_H_ */
25
Note: See TracBrowser for help on using the repository browser.