Module Name:    src
Committed By:   kamil
Date:           Sat Feb  8 10:36:02 UTC 2020

Modified Files:
        src/usr.bin/env: env.c

Log Message:
Add CVS Id tag and switch __attribute__ to __dead.


To generate a diff of this commit:
cvs rdiff -u -r1.21 -r1.22 src/usr.bin/env/env.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/env/env.c
diff -u src/usr.bin/env/env.c:1.21 src/usr.bin/env/env.c:1.22
--- src/usr.bin/env/env.c:1.21	Sat Feb  8 10:30:22 2020
+++ src/usr.bin/env/env.c	Sat Feb  8 10:36:02 2020
@@ -1,3 +1,4 @@
+/*	$NetBSD: env.c,v 1.22 2020/02/08 10:36:02 kamil Exp $	*/
 /*
  * Copyright (c) 1988, 1993, 1994
  *	The Regents of the University of California.  All rights reserved.
@@ -35,7 +36,7 @@ __COPYRIGHT("@(#) Copyright (c) 1988, 19
 
 #ifndef lint
 /*static char sccsid[] = "@(#)env.c	8.3 (Berkeley) 4/2/94";*/
-__RCSID("$NetBSD: env.c,v 1.21 2020/02/08 10:30:22 kamil Exp $");
+__RCSID("$NetBSD: env.c,v 1.22 2020/02/08 10:36:02 kamil Exp $");
 #endif /* not lint */
 
 #include <err.h>
@@ -46,7 +47,7 @@ __RCSID("$NetBSD: env.c,v 1.21 2020/02/0
 #include <locale.h>
 #include <errno.h>
 
-static void usage(void) __attribute__((__noreturn__));
+static void usage(void) __dead;
 
 extern char **environ;
 

Reply via email to