sort includes - catpoint - Catpoint simple presenting software. | |
git clone git://bitreich.org/catpoint/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrin… | |
Log | |
Files | |
Refs | |
Tags | |
README | |
LICENSE | |
--- | |
commit c8f895266f3df502cade5f64150d7f1986329f73 | |
parent a6db1af027460ed5d4544921c81fea7a0584b3c2 | |
Author: Hiltjo Posthuma <[email protected]> | |
Date: Sun, 20 Dec 2020 15:38:15 +0100 | |
sort includes | |
Signed-off-by: Christoph Lohmann <[email protected]> | |
Diffstat: | |
M catpoint.c | 6 +++--- | |
1 file changed, 3 insertions(+), 3 deletions(-) | |
--- | |
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; |