From 22f5530a1af8c5ca26a3f1db5716eca02d8b5a27 Mon Sep 17 00:00:00 2001 From: perry Date: Sat, 2 Nov 2002 20:10:16 +0000 Subject: [PATCH] Make long long a c99ism, not a gnuism. --- usr.bin/xlint/lint1/decl.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/usr.bin/xlint/lint1/decl.c b/usr.bin/xlint/lint1/decl.c index 77c95d54118e..e267728a8138 100644 --- a/usr.bin/xlint/lint1/decl.c +++ b/usr.bin/xlint/lint1/decl.c @@ -1,4 +1,4 @@ -/* $NetBSD: decl.c,v 1.31 2002/09/13 14:59:24 christos Exp $ */ +/* $NetBSD: decl.c,v 1.32 2002/11/02 20:10:16 perry Exp $ */ /* * Copyright (c) 1996 Christopher G. Demetriou. All Rights Reserved. @@ -34,7 +34,7 @@ #include #if defined(__RCSID) && !defined(lint) -__RCSID("$NetBSD: decl.c,v 1.31 2002/09/13 14:59:24 christos Exp $"); +__RCSID("$NetBSD: decl.c,v 1.32 2002/11/02 20:10:16 perry Exp $"); #endif #include @@ -294,7 +294,7 @@ addtype(type_t *tp) dcs->d_lmod = NOTSPEC; if (!quadflg) /* %s C does not support 'long long' */ - (void)gnuism(265, tflag ? "traditional" : "ANSI"); + (void)c99ism(265, tflag ? "traditional" : "c89"); } if (dcs->d_type != NULL && dcs->d_type->t_typedef) {