pinosaur
/
st.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5347439
)
Add stdint include
author
René Rietz
<rrietz@informatik.tu-cottbus.de>
Mon, 25 Nov 2013 15:06:22 +0000
(16:06 +0100)
committer
Roberto E. Vargas Caballero
<k0ga@shike2.com>
Mon, 25 Nov 2013 15:08:01 +0000
(16:08 +0100)
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.
st.c
patch
|
blob
|
history
diff --git
a/st.c
b/st.c
index
8f1b8d8
..
91eb2cc
100644
(file)
--- 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>