URI: 
       write version to stdout like the man page says - slock - simple X display locker utility
  HTML git clone git://git.suckless.org/slock
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit e8bca65d629a4faa89439c9f0e599efb5a259573
   DIR parent ca6f30f621c1195b577ace7a14b9037fab0dab91
  HTML Author: Hiltjo Posthuma <hiltjo@codemadness.org>
       Date:   Fri,  6 Oct 2023 11:50:11 +0200
       
       write version to stdout like the man page says
       
       Diffstat:
         M slock.c                             |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
   DIR diff --git a/slock.c b/slock.c
       @@ -317,7 +317,7 @@ main(int argc, char **argv) {
        
                ARGBEGIN {
                case 'v':
       -                fprintf(stderr, "slock-"VERSION"\n");
       +                puts("slock-"VERSION);
                        return 0;
                default:
                        usage();