Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0-or-later */
0002 /*
0003  * Copyright © 2008 Michael Neuling IBM Corporation
0004  */
0005 #ifndef _ASM_POWERPC_SETJMP_H
0006 #define _ASM_POWERPC_SETJMP_H
0007 
0008 #define JMP_BUF_LEN    23
0009 
0010 typedef long jmp_buf[JMP_BUF_LEN];
0011 
0012 extern int setjmp(jmp_buf env) __attribute__((returns_twice));
0013 extern void longjmp(jmp_buf env, int val) __attribute__((noreturn));
0014 
0015 #endif /* _ASM_POWERPC_SETJMP_H */