|
@ -1,5 +1,8 @@ |
|
|
/* See LICENSE for license details. */ |
|
|
/* See LICENSE for license details. */ |
|
|
|
|
|
|
|
|
|
|
|
#include <stdint.h> |
|
|
|
|
|
#include <sys/types.h> |
|
|
|
|
|
|
|
|
/* macros */ |
|
|
/* macros */ |
|
|
#define MIN(a, b) ((a) < (b) ? (a) : (b)) |
|
|
#define MIN(a, b) ((a) < (b) ? (a) : (b)) |
|
|
#define MAX(a, b) ((a) < (b) ? (b) : (a)) |
|
|
#define MAX(a, b) ((a) < (b) ? (b) : (a)) |
|
|