diff --git a/misc/subr.h b/misc/subr.h index 25bca0d..e9eb088 100644 --- a/misc/subr.h +++ b/misc/subr.h @@ -4,7 +4,9 @@ #include #include +#define max(x, y) ((x) >= (y) ? (x) : (y)) #define min(x, y) ((x) <= (y) ? (x) : (y)) + #define SHAHEXSIZE 41 int set_nonblocking(int fd);