summaryrefslogtreecommitdiff
path: root/usr.bin/mktemp
diff options
context:
space:
mode:
authorperry <perry@NetBSD.org>2007-12-15 19:44:37 +0000
committerperry <perry@NetBSD.org>2007-12-15 19:44:37 +0000
commit8b0f9554ff8762542c4defc4f70e1eb76fb508fa (patch)
treee4ba004e9b95ba0118be0965790e81f9b4803609 /usr.bin/mktemp
parent381f4068aea50b74700b6a03c4ae538254ae6be3 (diff)
convert __attribute__s to applicable cdefs.h macros
Diffstat (limited to 'usr.bin/mktemp')
-rw-r--r--usr.bin/mktemp/mktemp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/mktemp/mktemp.c b/usr.bin/mktemp/mktemp.c
index cc650ba0168..5b7ff758bb0 100644
--- a/usr.bin/mktemp/mktemp.c
+++ b/usr.bin/mktemp/mktemp.c
@@ -1,4 +1,4 @@
-/* $NetBSD: mktemp.c,v 1.9 2007/12/15 16:32:06 perry Exp $ */
+/* $NetBSD: mktemp.c,v 1.10 2007/12/15 19:44:52 perry Exp $ */
/*-
* Copyright (c) 1994, 1995, 1996, 1998 Peter Wemm <peter@netplex.com.au>
@@ -50,10 +50,10 @@
#include <unistd.h>
#if defined(__RCSID) && !defined(__lint)
-__RCSID("$NetBSD: mktemp.c,v 1.9 2007/12/15 16:32:06 perry Exp $");
+__RCSID("$NetBSD: mktemp.c,v 1.10 2007/12/15 19:44:52 perry Exp $");
#endif /* !__lint */
-static void usage(void) __attribute__((__noreturn__));
+static void usage(void) __dead;
int
main(int argc, char **argv)