97901ec593
* Added a few header files in headers/posix/arch that'll allow for an x86_64 haiku target to be compiled. fenv.h is src/lib/msun/amd64/fenv.h from freebsd. * configure: Added support for x86_64 arch when running build_cross_tools_gcc4. * config[_build]/HaikuConfig.h, BuildSetup: Added x86_64 recognition. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@36794 a95241bf-73f2-0310-859d-f6bbb57e9c96
12 lines
291 B
C
12 lines
291 B
C
/*
|
|
* Copyright 2005, Haiku, Inc.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef _ARCH_SETJMP_H_
|
|
#define _ARCH_SETJMP_H_
|
|
|
|
/* TODO: A jmp_buf size of 12 might not be large enough. Increase to a large size if needed. */
|
|
typedef int __jmp_buf[12];
|
|
|
|
#endif /* _ARCH_SETJMP_H_ */
|