st

fork of suckless's simple terminal
Index Commits Files Refs README LICENSE
commit 08a3eea571f8e81b6820c18d30f9264b6ee6e08b
parent 53474391bcf2122921d27356a70e6da3c78d058e
Author: René Rietz <rrietz@informatik.tu-cottbus.de>
Date:   Mon, 25 Nov 2013 16:06:22 +0100

Add stdint include

Since st is using now int32_t and uint32_t the inclusion of
stdint or inttype is mandatory, because in other case the
definition of these new types will not be known by the
compiler.

Diffstat:
Mst.c | 1+
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/st.c b/st.c
@@ -11,6 +11,7 @@
 #include <stdlib.h>
 #include <string.h>
 #include <signal.h>
+#include <stdint.h>
 #include <sys/ioctl.h>
 #include <sys/select.h>
 #include <sys/stat.h>