Clean up #includes
Signed-off-by: Devin J. Pohly <djpohly@gmail.com>
This commit is contained in:
parent
e0215d5377
commit
403c57ebb5
3 changed files with 4 additions and 9 deletions
3
st.h
3
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))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue