summaryrefslogtreecommitdiffstats
path: root/mmain.h
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-02-23 15:34:53 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-02-23 15:34:53 +0000
commit61ed3cda9170f4f414c6f2d577c68533f7bfe154 (patch)
tree47b541df9c9d8066ace5d426dc3d63271d46be5a /mmain.h
parent0433d239533d292f8994aa02fe4bd7d8eacd2bb5 (diff)
downloadmandoc-61ed3cda9170f4f414c6f2d577c68533f7bfe154.tar.gz
Compiles fine on NetBSD now, too.
Diffstat (limited to 'mmain.h')
-rw-r--r--mmain.h19
1 files changed, 11 insertions, 8 deletions
diff --git a/mmain.h b/mmain.h
index 4010e0a7..c6d9c717 100644
--- a/mmain.h
+++ b/mmain.h
@@ -28,8 +28,16 @@
#include "mdoc.h"
-#ifdef __linux__
-#define __dead /* Nothing */
+/* Rules for "dead" functions: */
+#if defined(__NetBSD__)
+#define dead_pre __dead
+#define dead_post __attribute__((__noreturn__))
+#elif defined(__OpenBSD__)
+#define dead_pre __dead
+#define dead_post /* Nothing. */
+#else
+#define dead_pre /* Nothing. */
+#define dead_post __attribute__((__noreturn__))
#endif
__BEGIN_DECLS
@@ -37,12 +45,7 @@ __BEGIN_DECLS
struct mmain;
struct mmain *mmain_alloc(void);
-#ifdef __linux__
-void mmain_exit(struct mmain *, int)
- __attribute__((__noreturn__));
-#else
-__dead void mmain_exit(struct mmain *, int);
-#endif
+dead_pre void mmain_exit(struct mmain *, int) dead_post;
int mmain_getopt(struct mmain *, int, char *[],
const char *, const char *, void *,
int (*)(void *, int, const char *));