diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2013-07-19 18:38:25 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2013-07-19 18:38:25 -0700 |
commit | b150b99c56bc4c98bf416be66764fb49dce425dc (patch) | |
tree | 80a76c5e0653e5b3eada4039b52e0401febfade4 | |
parent | 7ed5afd77941f89467e57ec8562992dd27ea3e7f (diff) |
Mark usage() as noreturn, as suggested by gcc -Wmissing-noreturn
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r-- | dsimple.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -64,7 +64,7 @@ void Setup_Display_And_Screen(int *, char **); void Close_Display(void); XFontStruct *Open_Font(const char *); Window Select_Window_Args(int *, char **); -void usage(void); +void usage(void) _X_NORETURN; #define X_USAGE "[host:display]" /* X arguments handled by Get_Display_Name */ |