diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-02-23 15:34:53 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-02-23 15:34:53 +0000 |
commit | 61ed3cda9170f4f414c6f2d577c68533f7bfe154 (patch) | |
tree | 47b541df9c9d8066ace5d426dc3d63271d46be5a /mmain.h | |
parent | 0433d239533d292f8994aa02fe4bd7d8eacd2bb5 (diff) | |
download | mandoc-61ed3cda9170f4f414c6f2d577c68533f7bfe154.tar.gz |
Compiles fine on NetBSD now, too.
Diffstat (limited to 'mmain.h')
-rw-r--r-- | mmain.h | 19 |
1 files changed, 11 insertions, 8 deletions
@@ -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 *)); |