Module Name: src Committed By: dholland Date: Sun Nov 27 13:24:32 UTC 2011
Modified Files: src/usr.bin/quota: quota.c Log Message: Use __dead, not attribute noreturn. To generate a diff of this commit: cvs rdiff -u -r1.39 -r1.40 src/usr.bin/quota/quota.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/usr.bin/quota/quota.c diff -u src/usr.bin/quota/quota.c:1.39 src/usr.bin/quota/quota.c:1.40 --- src/usr.bin/quota/quota.c:1.39 Sun Nov 27 13:23:50 2011 +++ src/usr.bin/quota/quota.c Sun Nov 27 13:24:32 2011 @@ -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 @@ __COPYRIGHT("@(#) Copyright (c) 1980, 19 #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 showgrpname(const char *); 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;