summaryrefslogtreecommitdiff
path: root/usr.bin/mandoc/mandoc_aux.h
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/mandoc_aux.h
parent007125554ff2345619b72d796fb915bc98115caf (diff)
Be consistent in protecting __attribute__ attributes with __;
from Christos Zoulas <christos @ NetBSD>.
Diffstat (limited to 'usr.bin/mandoc/mandoc_aux.h')
-rw-r--r--usr.bin/mandoc/mandoc_aux.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/mandoc/mandoc_aux.h b/usr.bin/mandoc/mandoc_aux.h
index 11ddd4cbf92..05a85f3e6fc 100644
--- a/usr.bin/mandoc/mandoc_aux.h
+++ b/usr.bin/mandoc/mandoc_aux.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: mandoc_aux.h,v 1.7 2016/07/19 13:30:16 schwarze Exp $ */
+/* $OpenBSD: mandoc_aux.h,v 1.8 2017/02/09 17:19:07 schwarze Exp $ */
/*
* Copyright (c) 2009, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
* Copyright (c) 2014 Ingo Schwarze <schwarze@openbsd.org>
@@ -17,7 +17,7 @@
*/
int mandoc_asprintf(char **, const char *, ...)
- __attribute__((__format__ (printf, 2, 3)));
+ __attribute__((__format__ (__printf__, 2, 3)));
void *mandoc_calloc(size_t, size_t);
void *mandoc_malloc(size_t);
void *mandoc_realloc(void *, size_t);