| tAdd stdint include - st - [fork] customized build of st, the simple terminal | |
| git clone git://src.adamsgaard.dk/st | |
| Log | |
| Files | |
| Refs | |
| README | |
| LICENSE | |
| --- | |
| commit 08a3eea571f8e81b6820c18d30f9264b6ee6e08b | |
| parent 53474391bcf2122921d27356a70e6da3c78d058e | |
| Author: René Rietz <[email protected]> | |
| 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: | |
| M st.c | 1 + | |
| 1 file changed, 1 insertion(+), 0 deletions(-) | |
| --- | |
| diff --git a/st.c b/st.c | |
| t@@ -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> |