12874c5fdSThomas Gleixner /* SPDX-License-Identifier: GPL-2.0-or-later */ 2b8b572e1SStephen Rothwell /* 3b8b572e1SStephen Rothwell * Copyright © 2008 Michael Neuling IBM Corporation 4b8b572e1SStephen Rothwell */ 5b8b572e1SStephen Rothwell #ifndef _ASM_POWERPC_SETJMP_H 6b8b572e1SStephen Rothwell #define _ASM_POWERPC_SETJMP_H 7b8b572e1SStephen Rothwell 8b8b572e1SStephen Rothwell #define JMP_BUF_LEN 23 9b8b572e1SStephen Rothwell 10b8b572e1SStephen Rothwell extern long setjmp(long *); 11b8b572e1SStephen Rothwell extern void longjmp(long *, long); 12b8b572e1SStephen Rothwell 13b8b572e1SStephen Rothwell #endif /* _ASM_POWERPC_SETJMP_H */ 14