diff options
Diffstat (limited to 'sunrpc/proto.h')
-rw-r--r-- | sunrpc/proto.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sunrpc/proto.h b/sunrpc/proto.h index 30ef18856b..3e1ecd1f26 100644 --- a/sunrpc/proto.h +++ b/sunrpc/proto.h @@ -45,8 +45,8 @@ void write_tables(void); /****** rpc_util.c ******/ void reinitialize(void); int streq(const char *a, const char *b); -void error(const char *msg); -void crash(void); +void error(const char *msg) __attribute__ ((noreturn)); +void crash(void) __attribute__ ((noreturn)); void tabify(FILE *f, int tab); char *make_argname(const char *pname, const char *vname); void add_type(int len, const char *type); |