URI: 
       sort includes - catpoint - Catpoint simple presenting software.
  HTML git clone git://bitreich.org/catpoint/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65d7roiv6bfj7d652fid.onion/catpoint/
   DIR Log
   DIR Files
   DIR Refs
   DIR Tags
   DIR README
   DIR LICENSE
       ---
   DIR commit c8f895266f3df502cade5f64150d7f1986329f73
   DIR parent a6db1af027460ed5d4544921c81fea7a0584b3c2
  HTML Author: Hiltjo Posthuma <hiltjo@codemadness.org>
       Date:   Sun, 20 Dec 2020 15:38:15 +0100
       
       sort includes
       
       Signed-off-by: Christoph Lohmann <20h@r-36.net>
       
       Diffstat:
         M catpoint.c                          |       6 +++---
       
       1 file changed, 3 insertions(+), 3 deletions(-)
       ---
   DIR diff --git a/catpoint.c b/catpoint.c
       @@ -1,17 +1,17 @@
        /* See LICENSE file for license details. */
        
       -#include <sys/types.h>
       -#include <sys/stat.h>
        #include <sys/mman.h>
       +#include <sys/stat.h>
       +#include <sys/types.h>
        
        #include <err.h>
        #include <curses.h>
        #include <fcntl.h>
       +#include <signal.h>
        #include <stdio.h>
        #include <stdlib.h>
        #include <unistd.h>
        #include <locale.h>
       -#include <signal.h>
        
        char *currentslidep, **slidefiles; /* the slides */
        int nslides, currentslide, currentslidelen;