summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2001-08-07 21:34:43 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2001-08-07 21:34:43 +0000
commitf0eb391d9dc66e72eb658ecb653a1d38c817b00a (patch)
treebfe942072011b1e32903acdd5f61d4b1b2c45445
parent39a6e64a5761ac6741b602ccf1bfadee1a8a7f57 (diff)
remove redundant __noreturn__ attributes now that __dead is sane for modern gcc
-rw-r--r--include/err.h18
-rw-r--r--include/unistd.h4
2 files changed, 11 insertions, 11 deletions
diff --git a/include/err.h b/include/err.h
index cd81b8b0525..d494281396c 100644
--- a/include/err.h
+++ b/include/err.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: err.h,v 1.6 2001/07/19 15:06:22 espie Exp $ */
+/* $OpenBSD: err.h,v 1.7 2001/08/07 21:34:42 millert Exp $ */
/* $NetBSD: err.h,v 1.11 1994/10/26 00:55:52 cgd Exp $ */
/*-
@@ -52,13 +52,13 @@
__BEGIN_DECLS
__dead void err __P((int, const char *, ...))
- __attribute__((__noreturn__, __format__ (printf, 2, 3)));
+ __attribute__((__format__ (printf, 2, 3)));
__dead void verr __P((int, const char *, _BSD_VA_LIST_))
- __attribute__((__noreturn__, __format__ (printf, 2, 0)));
+ __attribute__((__format__ (printf, 2, 0)));
__dead void errx __P((int, const char *, ...))
- __attribute__((__noreturn__, __format__ (printf, 2, 3)));
+ __attribute__((__format__ (printf, 2, 3)));
__dead void verrx __P((int, const char *, _BSD_VA_LIST_))
- __attribute__((__noreturn__, __format__ (printf, 2, 0)));
+ __attribute__((__format__ (printf, 2, 0)));
void warn __P((const char *, ...))
__attribute__((__format__ (printf, 1, 2)));
void vwarn __P((const char *, _BSD_VA_LIST_))
@@ -73,13 +73,13 @@ void vwarnx __P((const char *, _BSD_VA_LIST_))
* versions of err*,warn* do not get used.
*/
__dead void _err __P((int, const char *, ...))
- __attribute__((__noreturn__, __format__ (printf, 2, 3)));
+ __attribute__((__format__ (printf, 2, 3)));
__dead void _verr __P((int, const char *, _BSD_VA_LIST_))
- __attribute__((__noreturn__, __format__ (printf, 2, 0)));
+ __attribute__((__format__ (printf, 2, 0)));
__dead void _errx __P((int, const char *, ...))
- __attribute__((__noreturn__, __format__ (printf, 2, 3)));
+ __attribute__((__format__ (printf, 2, 3)));
__dead void _verrx __P((int, const char *, _BSD_VA_LIST_))
- __attribute__((__noreturn__, __format__ (printf, 2, 0)));
+ __attribute__((__format__ (printf, 2, 0)));
void _warn __P((const char *, ...))
__attribute__((__format__ (printf, 1, 2)));
void _vwarn __P((const char *, _BSD_VA_LIST_))
diff --git a/include/unistd.h b/include/unistd.h
index fd9d40d1ea7..01d71c996fe 100644
--- a/include/unistd.h
+++ b/include/unistd.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: unistd.h,v 1.34 2000/12/06 17:18:43 deraadt Exp $ */
+/* $OpenBSD: unistd.h,v 1.35 2001/08/07 21:34:42 millert Exp $ */
/* $NetBSD: unistd.h,v 1.26.4.1 1996/05/28 02:31:51 mrg Exp $ */
/*-
@@ -56,7 +56,7 @@
#endif
__BEGIN_DECLS
-__dead void _exit __P((int)) __attribute__((__noreturn__));
+__dead void _exit __P((int));
int access __P((const char *, int));
unsigned int alarm __P((unsigned int));
int chdir __P((const char *));