47a20cd6d1
The warnings made those headers and those including them not detectable by libiberty's configure because of the way it checked for them. This fixes the gcc build.
14 lines
320 B
C
14 lines
320 B
C
/*
|
|
* Copyright 2007-2012 Haiku, Inc. All Rights Reserved.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef _ARCH_SETJMP_H_
|
|
#define _ARCH_SETJMP_H_
|
|
|
|
|
|
#define _SETJMP_BUF_SZ (7+6+2+8*((96/8)/4))
|
|
typedef int __jmp_buf[_SETJMP_BUF_SZ];
|
|
/* TODO: #warning M68K: fix jmpbuf size */
|
|
|
|
#endif /* _ARCH_SETJMP_H_ */
|