Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/usr.bin/quota Use __dead, not attribute noreturn.



details:   https://anonhg.NetBSD.org/src/rev/93eaa6dc898b
branches:  trunk
changeset: 771655:93eaa6dc898b
user:      dholland <dholland%NetBSD.org@localhost>
date:      Sun Nov 27 13:24:32 2011 +0000

description:
Use __dead, not attribute noreturn.

diffstat:

 usr.bin/quota/quota.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 838e68f0f601 -r 93eaa6dc898b usr.bin/quota/quota.c
--- a/usr.bin/quota/quota.c     Sun Nov 27 13:23:50 2011 +0000
+++ b/usr.bin/quota/quota.c     Sun Nov 27 13:24:32 2011 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: quota.c,v 1.39 2011/11/27 13:23:50 dholland Exp $      */
+/*     $NetBSD: quota.c,v 1.40 2011/11/27 13:24:32 dholland Exp $      */
 
 /*
  * Copyright (c) 1980, 1990, 1993
@@ -42,7 +42,7 @@
 #if 0
 static char sccsid[] = "@(#)quota.c    8.4 (Berkeley) 4/28/95";
 #else
-__RCSID("$NetBSD: quota.c,v 1.39 2011/11/27 13:23:50 dholland Exp $");
+__RCSID("$NetBSD: quota.c,v 1.40 2011/11/27 13:24:32 dholland Exp $");
 #endif
 #endif /* not lint */
 
@@ -92,7 +92,7 @@
 static void    showquotas(int, id_t, const char *);
 static void    showuid(uid_t);
 static void    showusrname(const char *);
-static void    usage(void) __attribute__((__noreturn__));
+static void    usage(void) __dead;
 
 static int     qflag = 0;
 static int     vflag = 0;



Home | Main Index | Thread Index | Old Index