From 31045b4490295e3c69631851adefba2cbaef8472 Mon Sep 17 00:00:00 2001 From: pk Date: Fri, 27 Dec 1996 20:55:28 +0000 Subject: [PATCH] Annul `__builtin_classify_type' and `__extension__' if __lint__. --- sys/arch/sparc/include/stdarg.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/sys/arch/sparc/include/stdarg.h b/sys/arch/sparc/include/stdarg.h index aa2081597bfe..b034dc26f887 100644 --- a/sys/arch/sparc/include/stdarg.h +++ b/sys/arch/sparc/include/stdarg.h @@ -1,4 +1,4 @@ -/* $NetBSD: stdarg.h,v 1.9 1995/12/29 18:53:01 mycroft Exp $ */ +/* $NetBSD: stdarg.h,v 1.10 1996/12/27 20:55:28 pk Exp $ */ /* * Copyright (c) 1992, 1993 @@ -49,6 +49,11 @@ #include +#ifdef __lint__ +#define __extension__(x) (0) +#define __builtin_classify_type(t) (0) +#endif + typedef _BSD_VA_LIST_ va_list; #define __va_size(type) \