aboutsummarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorRené Rietz2013-11-25 16:06:22 +0100
committerRoberto E. Vargas Caballero2013-11-25 16:08:01 +0100
commit87d640441b35224b61c99dbf1749a2e17dfcb28a (patch)
treeb91f744d4e5fcf91053b7c0dbd370a5b0d7db96d
parent98f69d9890509ece56d93048c67642004e97955e (diff)
downloadaur-87d640441b35224b61c99dbf1749a2e17dfcb28a.tar.gz
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 8f1b8d8cadd6..91eb2cc667a4 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>