Subversion Repositories Kolibri OS

Rev

Rev 4874 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
4349 Serge 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 
11
 
12
_BEGIN_STD_C
13
 
6099 serge 14
#ifdef __GNUC__
15
void	_EXFUN(longjmp,(jmp_buf __jmpb, int __retval))
16
			__attribute__ ((__noreturn__));
17
#else
4349 Serge 18
void	_EXFUN(longjmp,(jmp_buf __jmpb, int __retval));
6099 serge 19
#endif
4349 Serge 20
int	_EXFUN(setjmp,(jmp_buf __jmpb));
21
 
22
_END_STD_C
23
 
24
#endif /* _SETJMP_H_ */
25