Ok, no need for a separate version function.
authorChristoph Lohmann <20h@r-36.net>
Sat, 30 Jan 2016 08:50:18 +0000 (09:50 +0100)
committerChristoph Lohmann <20h@r-36.net>
Sat, 30 Jan 2016 08:50:18 +0000 (09:50 +0100)
This is just redundant metadata. Please add Java comment meta classes too.

st.c

diff --git a/st.c b/st.c
index 38abffb..005bf1d 100644 (file)
--- a/st.c
+++ b/st.c
@@ -486,7 +486,6 @@ static void *xrealloc(void *, size_t);
 static char *xstrdup(char *);
 
 static void usage(void);
-static void version(void);
 
 static void (*handler[LASTEvent])(XEvent *) = {
        [KeyPress] = kpress,
@@ -4342,12 +4341,6 @@ usage(void)
        " [stty_args ...]\n", argv0, argv0);
 }
 
-void
-version(void)
-{
-       die("%s " VERSION " (c) 2010-2016 st engineers\n", argv0);
-}
-
 int
 main(int argc, char *argv[])
 {
@@ -4395,7 +4388,7 @@ main(int argc, char *argv[])
                opt_embed = EARGF(usage());
                break;
        case 'v':
-               version();
+               die("%s " VERSION " (c) 2010-2016 st engineers\n", argv0);
                break;
        default:
                usage();