st

simple terminal

git clone https://9o.is/git/st.git

commit 8b723c0c2d92bc5dbe26d812e28b71a1ec1f33f6
parent b084b1190a2b11c6f928e2c4b505491efca1dc69
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>