X-Git-Url: https://git.distorted.org.uk/~mdw/sgt/agedu/blobdiff_plain/b02bd008c6a46bcfed857c085e4c157146bc62f1..7e25423cd18ab429b13c6e2ea920d9c44c0f263c:/agedu.h diff --git a/agedu.h b/agedu.h index 2e6cc51..5a4e72b 100644 --- a/agedu.h +++ b/agedu.h @@ -106,3 +106,6 @@ extern char pathsep; #define LSTAT lstat #define STAT stat #endif + +#define max(x,y) ( (x) > (y) ? (x) : (y) ) +#define min(x,y) ( (x) < (y) ? (x) : (y) )