diff options
Diffstat (limited to 'nscd')
-rw-r--r-- | nscd/nscd.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nscd/nscd.h b/nscd/nscd.h index ab93a9ac3e..b2d438d550 100644 --- a/nscd/nscd.h +++ b/nscd/nscd.h @@ -102,7 +102,7 @@ extern const char *server_user; /* Prototypes for global functions. */ /* nscd.c */ -extern void termination_handler (int signum); +extern void termination_handler (int signum) __attribute__ ((__noreturn__)); extern int nscd_open_socket (void); /* connections.c */ @@ -115,7 +115,7 @@ extern int nscd_parse_file (const char *fname, struct database dbs[lastdb]); /* nscd_stat.c */ extern void send_stats (int fd, struct database dbs[lastdb]); -extern int receive_print_stats (void); +extern int receive_print_stats (void) __attribute__ ((__noreturn__)); /* cache.c */ extern struct hashentry *cache_search (int type, void *key, size_t len, |