summaryrefslogtreecommitdiff
path: root/usr.bin/mandoc/tag.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@cvs.openbsd.org>2017-02-09 17:19:08 +0000
committerIngo Schwarze <schwarze@cvs.openbsd.org>2017-02-09 17:19:08 +0000
commitffb8ee657aaa21d453287a9483b24c8dc79d116d (patch)
tree29638746ff0b5a0863776d9e6e0ee8398f434cf9 /usr.bin/mandoc/tag.c
parent007125554ff2345619b72d796fb915bc98115caf (diff)
Be consistent in protecting __attribute__ attributes with __;
from Christos Zoulas <christos @ NetBSD>.
Diffstat (limited to 'usr.bin/mandoc/tag.c')
-rw-r--r--usr.bin/mandoc/tag.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/mandoc/tag.c b/usr.bin/mandoc/tag.c
index bcf072fc82e..bcf1a55fdd6 100644
--- a/usr.bin/mandoc/tag.c
+++ b/usr.bin/mandoc/tag.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: tag.c,v 1.17 2017/01/09 17:49:55 schwarze Exp $ */
+/* $OpenBSD: tag.c,v 1.18 2017/02/09 17:19:07 schwarze Exp $ */
/*
* Copyright (c) 2015, 2016 Ingo Schwarze <schwarze@openbsd.org>
*
@@ -36,7 +36,7 @@ struct tag_entry {
char s[];
};
-static void tag_signal(int) __attribute__((noreturn));
+static void tag_signal(int) __attribute__((__noreturn__));
static struct ohash tag_data;
static struct tag_files tag_files;