Xinqi Bao's Git
projects
/
st.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
raw
| inline |
side by side
xhints: no need to initialize sizeh
[st.git]
/
st.h
diff --git
a/st.h
b/st.h
index
1015fc6
..
dac64d8
100644
(file)
--- 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))