t* My version of sent
       
   URI git clone git://git.codevoid.de/sent-sdk.git
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit e75676d9a4dd6dc275d3a233cc60f7624c62f189
   DIR parent 93329c72b5c20bcdf937bd636cb1a6f331a97893
   URI Author: FRIGN <dev@frign.de>
       Date:   Thu, 14 Jul 2016 13:10:34 +0200
       
       Simplify usage()
       
       Diffstat:
         M sent.c                              |       5 +++--
       
       1 file changed, 3 insertions(+), 2 deletions(-)
       ---
   DIR diff --git a/sent.c b/sent.c
       t@@ -645,8 +645,7 @@ configure(XEvent *e)
        void
        usage()
        {
       -        die("sent " VERSION " (c) 2014-2015 markus.teich@stusta.mhn.de\n" \
       -        "usage: sent [FILE]\n", argv0);
       +        die("usage: %s [file]\n", argv0);
        }
        
        int
       t@@ -656,6 +655,8 @@ main(int argc, char *argv[])
        
                ARGBEGIN {
                case 'v':
       +                fprintf(stderr, "sent-"VERSION"\n");
       +                return 0;
                default:
                        usage();
                } ARGEND;