blob: d995061f5f8620158a9a766babdc315edf2da7f0 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001/* SPDX-License-Identifier: GPL-2.0-or-later */
Michael Neulingc3b75bd2008-01-18 15:50:30 +11002/*
3 * Copyright © 2008 Michael Neuling IBM Corporation
Michael Neulingc3b75bd2008-01-18 15:50:30 +11004 */
5#ifndef _ASM_POWERPC_SETJMP_H
6#define _ASM_POWERPC_SETJMP_H
7
8#define JMP_BUF_LEN 23
9
10extern long setjmp(long *);
11extern void longjmp(long *, long);
12
13#endif /* _ASM_POWERPC_SETJMP_H */