haiku/headers/posix/arch/arm/arch_setjmp.h
Ithamar R. Adema a85c91d6f0 * Fix setjmp/jmpbuf_t size so we can finally get to the KDL prompt
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@38993 a95241bf-73f2-0310-859d-f6bbb57e9c96
2010-10-18 00:50:59 +00:00

12 lines
241 B
C

/*
* Copyright 2008, Haiku, Inc.
* Distributed under the terms of the MIT License.
*/
#ifndef _ARCH_SETJMP_H_
#define _ARCH_SETJMP_H_
#define _SETJMP_BUF_SZ ((15+2)*4)
typedef int __jmp_buf[_SETJMP_BUF_SZ];
#endif /* _ARCH_SETJMP_H_ */