diff options
author | Devin J. Pohly <djpohly@gmail.com> | 2018-02-24 16:45:42 -0600 |
---|---|---|
committer | Devin J. Pohly <djpohly@gmail.com> | 2018-02-25 21:56:26 -0600 |
commit | 403c57ebb5b3745ff93e49b87e526c49dc59a5b9 (patch) | |
tree | 9eccc6e9cc3bea0917420250c767fb318a0408e6 /st.h | |
parent | e0215d53770a9b6bc6e5d7b9a603ecd34dbd7100 (diff) |
Clean up #includes
Signed-off-by: Devin J. Pohly <djpohly@gmail.com>
Diffstat (limited to 'st.h')
-rw-r--r-- | st.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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)) |