diff options
Diffstat (limited to '')
-rw-r--r-- | src/screen_clock.c | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/src/screen_clock.c b/src/screen_clock.c index 0839304a1..a92953262 100644 --- a/src/screen_clock.c +++ b/src/screen_clock.c @@ -5,12 +5,6 @@ * ncurses. */ -#include <time.h> -#include <stdlib.h> -#include <string.h> -#include <glib.h> -#include <ncurses.h> - #include "config.h" #ifndef DISABLE_CLOCK_SCREEN @@ -21,6 +15,13 @@ #include "screen.h" #include "screen_utils.h" +#include <time.h> +#include <stdlib.h> +#include <string.h> +#include <glib.h> +#include <ncurses.h> + + #define YDEPTH 5 #define BUFSIZE 64 |