diff options
author | 2016-07-19 08:04:53 +0000 | |
---|---|---|
committer | 2016-07-19 08:04:53 +0000 | |
commit | 995e185684a29fb5c51cc0db21652b55f99f42ed (patch) | |
tree | ecdd99cb381c7a2e3291d9c9d5c9ef6f17a608ba | |
parent | Do not consider tap(4) a special interface and start if before other (diff) | |
download | wireguard-openbsd-995e185684a29fb5c51cc0db21652b55f99f42ed.tar.xz wireguard-openbsd-995e185684a29fb5c51cc0db21652b55f99f42ed.zip |
remove bogus attributes from ifstated, spooted by guenther@
-rw-r--r-- | usr.sbin/ifstated/ifstated.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/usr.sbin/ifstated/ifstated.h b/usr.sbin/ifstated/ifstated.h index 8eeb0b0a74f..2756595e90d 100644 --- a/usr.sbin/ifstated/ifstated.h +++ b/usr.sbin/ifstated/ifstated.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ifstated.h,v 1.9 2016/07/18 21:17:32 benno Exp $ */ +/* $OpenBSD: ifstated.h,v 1.10 2016/07/19 08:04:53 benno Exp $ */ /* * Copyright (c) 2004 Ryan McBride @@ -150,7 +150,5 @@ void vlog(int, const char *, va_list) __attribute__((__format__ (printf, 2, 0))); void logit(int, const char *, ...) __attribute__((__format__ (printf, 2, 3))); -void fatal(const char *) __dead - __attribute__((__format__ (printf, 1, 0))); -void fatalx(const char *) __dead - __attribute__((__format__ (printf, 1, 0))); +void fatal(const char *) __dead; +void fatalx(const char *) __dead; |