
- programs could be load as module by the bootloader Grub git-svn-id: http://svn.lfbs.rwth-aachen.de/svn/scc/trunk/MetalSVM@95 315a16e6-25f9-4109-90ae-ca3045a26c18
20 lines
269 B
C
20 lines
269 B
C
/*
|
|
setjmp.h
|
|
stubs for future use.
|
|
*/
|
|
|
|
#ifndef _SETJMP_H_
|
|
#define _SETJMP_H_
|
|
|
|
#include "_ansi.h"
|
|
#include <machine/setjmp.h>
|
|
|
|
_BEGIN_STD_C
|
|
|
|
void _EXFUN(longjmp,(jmp_buf __jmpb, int __retval));
|
|
int _EXFUN(setjmp,(jmp_buf __jmpb));
|
|
|
|
_END_STD_C
|
|
|
|
#endif /* _SETJMP_H_ */
|
|
|