diff options
author | Andreas Jaeger <aj@suse.de> | 2000-12-31 16:56:02 +0000 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2000-12-31 16:56:02 +0000 |
commit | 4e6bc1f61caff64d2f667dbb5c2d031f75d340be (patch) | |
tree | 1d12ae6d1c1a301ee64fbf9f45cdc99160013d40 /sunrpc/proto.h | |
parent | fa39f7f7bedcbb61c3f6b9f1bbe3d1623ca6a8e9 (diff) | |
download | glibc-4e6bc1f61caff64d2f667dbb5c2d031f75d340be.zip glibc-4e6bc1f61caff64d2f667dbb5c2d031f75d340be.tar.gz glibc-4e6bc1f61caff64d2f667dbb5c2d031f75d340be.tar.bz2 |
(main): Use return instead of exit to avoid warning.
2000-12-31 Andreas Jaeger <aj@suse.de>
* tst-fmon.c (main): Use return instead of exit to avoid warning.
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 30ef188..3e1ecd1 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); |