aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRené Rietz <rrietz@informatik.tu-cottbus.de>2013-11-25 16:06:22 +0100
committerRoberto E. Vargas Caballero <k0ga@shike2.com>2013-11-25 16:08:01 +0100
commit08a3eea571f8e81b6820c18d30f9264b6ee6e08b (patch)
treefe1c860f59f645e3117ac4772899396295b0d564
parent53474391bcf2122921d27356a70e6da3c78d058e (diff)
downloadst-08a3eea571f8e81b6820c18d30f9264b6ee6e08b.tar.zst
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.
-rw-r--r--st.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/st.c b/st.c
index 8f1b8d8..91eb2cc 100644
--- 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>