aboutsummaryrefslogtreecommitdiffstats
path: root/st.h
diff options
context:
space:
mode:
authorDevin J. Pohly <djpohly@gmail.com>2018-02-24 16:45:42 -0600
committerDevin J. Pohly <djpohly@gmail.com>2018-02-25 21:56:26 -0600
commit403c57ebb5b3745ff93e49b87e526c49dc59a5b9 (patch)
tree9eccc6e9cc3bea0917420250c767fb318a0408e6 /st.h
parente0215d53770a9b6bc6e5d7b9a603ecd34dbd7100 (diff)
downloadst-403c57ebb5b3745ff93e49b87e526c49dc59a5b9.tar.gz
Clean up #includes
Signed-off-by: Devin J. Pohly <djpohly@gmail.com>
Diffstat (limited to 'st.h')
-rw-r--r--st.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/st.h b/st.h
index 1015fc6..dac64d8 100644
--- a/st.h
+++ b/st.h
@@ -1,5 +1,8 @@
/* See LICENSE for license details. */
+#include <stdint.h>
+#include <sys/types.h>
+
/* macros */
#define MIN(a, b) ((a) < (b) ? (a) : (b))
#define MAX(a, b) ((a) < (b) ? (b) : (a))
remember that computers suck.