瀏覽代碼

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 11 年之前
父節點
當前提交
08a3eea571
共有 1 個文件被更改,包括 1 次插入0 次删除
  1. 1 0
      st.c

+ 1 - 0
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>