Signed-off-by: Devin J. Pohly <djpohly@gmail.com>
@ -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))
The note is not visible to the blocked user.