ltk

Socket-based GUI for X11 (WIP)
git clone git://lumidify.org/ltk.git (fast, but not encrypted)
git clone https://lumidify.org/git/ltk.git (encrypted, but very slow)
Log | Files | Refs | README | LICENSE

commit a355c9b3132c49aff7f0ebfcc889eff74b287675
parent c162f582d06070c36e81117f1ab54ee91d7b2480
Author: lumidify <nobody@lumidify.org>
Date:   Mon, 25 Jan 2021 21:11:42 +0100

Fix includes

Diffstat:
Mbox.c | 1+
Mdraw.c | 1+
Mgrid.c | 1+
Mltkd.c | 1+
4 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/box.c b/box.c @@ -24,6 +24,7 @@ #include <stdio.h> #include <stdlib.h> #include <stdarg.h> +#include <stdint.h> #include <X11/Xlib.h> #include <X11/Xutil.h> diff --git a/draw.c b/draw.c @@ -25,6 +25,7 @@ #include <stdlib.h> #include <string.h> #include <stdarg.h> +#include <stdint.h> #include <X11/Xlib.h> #include <X11/Xutil.h> diff --git a/grid.c b/grid.c @@ -31,6 +31,7 @@ #include <stdio.h> #include <stdlib.h> #include <stdarg.h> +#include <stdint.h> #include <X11/Xlib.h> #include <X11/Xutil.h> diff --git a/ltkd.c b/ltkd.c @@ -34,6 +34,7 @@ #include <stdarg.h> #include <unistd.h> #include <signal.h> +#include <stdint.h> #include <sys/un.h> #include <sys/stat.h>