Add stdint include - st - Simple Terminal
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit 08a3eea571f8e81b6820c18d30f9264b6ee6e08b
(DIR) parent 53474391bcf2122921d27356a70e6da3c78d058e
(HTM) 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:
st.c | 1 +
1 file changed, 1 insertion(+), 0 deletions(-)
---
(DIR) 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>