summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2013-07-19 18:38:25 -0700
committerAlan Coopersmith <alan.coopersmith@oracle.com>2013-07-19 18:38:25 -0700
commitb150b99c56bc4c98bf416be66764fb49dce425dc (patch)
tree80a76c5e0653e5b3eada4039b52e0401febfade4
parent7ed5afd77941f89467e57ec8562992dd27ea3e7f (diff)
Mark usage() as noreturn, as suggested by gcc -Wmissing-noreturn
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r--dsimple.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/dsimple.h b/dsimple.h
index 4103790..ee12c6d 100644
--- a/dsimple.h
+++ b/dsimple.h
@@ -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 */