From 1df8b22cb1f5d0528d4734977b3eb6d55e5d9683 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Sun, 11 May 2003 16:14:12 +0000 Subject: [PATCH] I don't know yet *why*, but the build fails when this header is guarded against reinclusion - possibly because GCC's stdarg.h act differently when certain symbols are defined. Anyway, that fixes the issue for now. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@3207 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- headers/posix/stdarg.h | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/headers/posix/stdarg.h b/headers/posix/stdarg.h index 38ddb5dedf..2159ff5077 100644 --- a/headers/posix/stdarg.h +++ b/headers/posix/stdarg.h @@ -1,5 +1,3 @@ -#ifndef _STDARG_H_ -#define _STDARG_H_ /* ** Distributed under the terms of the OpenBeOS License. */ @@ -9,7 +7,6 @@ * It contains the actual platform dependent varargs definitions. */ -#include_next - -#endif /* _STDARG_H_ */ - +#ifndef _STDARG_H +# include_next +#endif