all repos — st @ 08a3eea571f8e81b6820c18d30f9264b6ee6e08b

st (suckless terminal) config

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.
René Rietz rrietz@informatik.tu-cottbus.de
commit

08a3eea571f8e81b6820c18d30f9264b6ee6e08b

parent

53474391bcf2122921d27356a70e6da3c78d058e

1 files changed, 1 insertions(+), 0 deletions(-)

jump to
M st.cst.c

@@ -11,6 +11,7 @@ #include <stdio.h>

#include <stdlib.h> #include <string.h> #include <signal.h> +#include <stdint.h> #include <sys/ioctl.h> #include <sys/select.h> #include <sys/stat.h>