diff options
Diffstat (limited to 'st.h')
-rw-r--r-- | st.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -1,5 +1,8 @@ | |||
1 | /* See LICENSE for license details. */ | 1 | /* See LICENSE for license details. */ |
2 | 2 | ||
3 | #include <stdint.h> | ||
4 | #include <sys/types.h> | ||
5 | |||
3 | /* macros */ | 6 | /* macros */ |
4 | #define MIN(a, b) ((a) < (b) ? (a) : (b)) | 7 | #define MIN(a, b) ((a) < (b) ? (a) : (b)) |
5 | #define MAX(a, b) ((a) < (b) ? (b) : (a)) | 8 | #define MAX(a, b) ((a) < (b) ? (b) : (a)) |