summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorjtc <jtc@NetBSD.org>1994-01-27 01:27:30 +0000
committerjtc <jtc@NetBSD.org>1994-01-27 01:27:30 +0000
commitbda51e9a590b9d582810a68f45306dfd4ba614f4 (patch)
tree60dde5a8ef4379fc76ed618dcfa8fec6726b1eb0 /include
parent24e4cb4bad26a3e52ecd7e7960cf6bdcf156b2ad (diff)
Change __attribute -> __attribute__. The former isn't turned off by
sys/cdefs.h when not using Gcc, the latter is.
Diffstat (limited to 'include')
-rw-r--r--include/err.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/include/err.h b/include/err.h
index 6f5dbdb8fa2..d9efc165e64 100644
--- a/include/err.h
+++ b/include/err.h
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* from: @(#)err.h 8.1 (Berkeley) 6/2/93
- * $Id: err.h,v 1.7 1993/12/01 23:59:27 jtc Exp $
+ * $Id: err.h,v 1.8 1994/01/27 01:27:30 jtc Exp $
*/
#ifndef _ERR_H_
@@ -49,21 +49,21 @@
__BEGIN_DECLS
__dead void err __P((int, const char *, ...))
- __attribute((format (printf, 2, 3)));
+ __attribute__((format (printf, 2, 3)));
__dead void verr __P((int, const char *, _VA_LIST_))
- __attribute((format (printf, 2, 0)));
+ __attribute__((format (printf, 2, 0)));
__dead void errx __P((int, const char *, ...))
- __attribute((format (printf, 2, 3)));
+ __attribute__((format (printf, 2, 3)));
__dead void verrx __P((int, const char *, _VA_LIST_))
- __attribute((format (printf, 2, 0)));
+ __attribute__((format (printf, 2, 0)));
void warn __P((const char *, ...))
- __attribute((format (printf, 1, 2)));
+ __attribute__((format (printf, 1, 2)));
void vwarn __P((const char *, _VA_LIST_))
- __attribute((format (printf, 1, 0)));
+ __attribute__((format (printf, 1, 0)));
void warnx __P((const char *, ...))
- __attribute((format (printf, 1, 2)));
+ __attribute__((format (printf, 1, 2)));
void vwarnx __P((const char *, _VA_LIST_))
- __attribute((format (printf, 1, 0)));
+ __attribute__((format (printf, 1, 0)));
__END_DECLS
#endif /* !_ERR_H_ */