82a9fd6a48
Remove DOS CR from some files. Add setjmp stuff for m68k (unfinished). Moved arch specific stuff out of signal.h to arch/<arch>/signal.h Added m68k vreg for signal.h (unfinished). git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@22703 a95241bf-73f2-0310-859d-f6bbb57e9c96
11 lines
195 B
C
11 lines
195 B
C
/*
|
|
* Copyright 2005, Haiku, Inc.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef _ARCH_SETJMP_H_
|
|
#define _ARCH_SETJMP_H_
|
|
|
|
typedef int __jmp_buf[23];
|
|
|
|
#endif /* _ARCH_SETJMP_H_ */
|