From cdde948ccc4ed003bd92b05cb56452767a8ba2e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Mon, 17 Jan 2005 22:35:28 +0000 Subject: [PATCH] Fixed compilation in case COMPILE_FOR_R5 is defined. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@10810 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/kernel/libroot/posix/arch/x86/setjmp.c | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/src/kernel/libroot/posix/arch/x86/setjmp.c b/src/kernel/libroot/posix/arch/x86/setjmp.c index 1b3ff38eec..789748335c 100644 --- a/src/kernel/libroot/posix/arch/x86/setjmp.c +++ b/src/kernel/libroot/posix/arch/x86/setjmp.c @@ -1,11 +1,15 @@ -/* -** Copyright 2004, Axel Dörfler, axeld@pinc-software.de. All rights reserved. -** Distributed under the terms of the Haiku License. -*/ +/* + * Copyright 2004-2005, Axel Dörfler, axeld@pinc-software.de. All rights reserved. + * Distributed under the terms of the MIT License. + */ #include +#ifdef COMPILE_FOR_R5 +# undef setjmp +#endif + int setjmp(jmp_buf buffer)