diff options
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)) |