File:  [RetroPC.NET] / xmil / adv / agb / advlibc / include / setjmp.h
Revision 1.1: download - view: text, annotated - select for diffs
Fri Feb 4 15:42:08 2005 JST (20 years, 9 months ago) by yui
Branches: MAIN
CVS tags: HEAD
RetroPC CVS restarting 2005/02/04 (T.Yui)

#ifndef _ADVLIBC_SETJMP_
#define _ADVLIBC_SETJMP_

#include	"advtypes.h"

#ifndef _JMP_BUF_DEFINED
#define _JMP_BUF_DEFINED
typedef  int  jmp_buf[10];		// r4-11,sp,lr
#endif

#ifdef __cplusplus
extern "C" {
#endif

int LIBCCALL setjmp(jmp_buf env);
void LIBCCALL longjmp(jmp_buf env, int value);

#ifdef __cplusplus
}
#endif

#endif

RetroPC.NET-CVS <cvs@retropc.net>