getopt: a function that calls exit(3) should be marked noreturn

This commit is contained in:
Aaron Jones 2016-06-01 20:03:52 +00:00
parent b1cfd3922c
commit 341560ecf2
No known key found for this signature in database
GPG Key ID: 6E854C0FAAD4CEA4
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ struct lgetopt
extern struct lgetopt myopts[];
void usage(const char *);
void usage(const char *) __attribute__((noreturn));
void parseargs(int *, char * const **, struct lgetopt *);
#endif /* __GETOPT_H_INCLUDED__ */