Instead of using pure atimes, I think we should generally use
[sgt/agedu] / agedu.h
diff --git a/agedu.h b/agedu.h
index 2e6cc51..5a4e72b 100644 (file)
--- 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) )