1
0
Fork 0
alistair23-linux/arch/powerpc/include/asm/setjmp.h

14 lines
295 B
C

/* SPDX-License-Identifier: GPL-2.0-or-later */
/*
* Copyright © 2008 Michael Neuling IBM Corporation
*/
#ifndef _ASM_POWERPC_SETJMP_H
#define _ASM_POWERPC_SETJMP_H
#define JMP_BUF_LEN 23
extern long setjmp(long *);
extern void longjmp(long *, long);
#endif /* _ASM_POWERPC_SETJMP_H */