diff options
author | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2016-07-20 13:02:45 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2016-07-20 13:02:45 +0000 |
commit | 6a5cbcf6c817ba60b5765a3fa81726c2e9fd7da0 (patch) | |
tree | 629b4092930a8f3ec7877b31a0da110f55388b80 /usr.bin/mandoc | |
parent | 0c8198f3e8ec2ccdc889ec6dccae569e9ab91605 (diff) |
tag_signal() is dead; from LLVM via Christos Zoulas
Diffstat (limited to 'usr.bin/mandoc')
-rw-r--r-- | usr.bin/mandoc/tag.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/mandoc/tag.c b/usr.bin/mandoc/tag.c index 8e52eb98596..299563d765d 100644 --- a/usr.bin/mandoc/tag.c +++ b/usr.bin/mandoc/tag.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tag.c,v 1.12 2016/07/08 20:41:13 schwarze Exp $ */ +/* $OpenBSD: tag.c,v 1.13 2016/07/20 13:02:44 schwarze Exp $ */ /* * Copyright (c) 2015 Ingo Schwarze <schwarze@openbsd.org> * @@ -34,7 +34,7 @@ struct tag_entry { char s[]; }; -static void tag_signal(int); +static void tag_signal(int) __attribute__((noreturn)); static struct ohash tag_data; static struct tag_files tag_files; |