Minor copy edit in agedu's man page, and also added another paragraph
[sgt/agedu] / agedu.h
diff --git a/agedu.h b/agedu.h
index 2e6cc51..8e2548c 100644 (file)
--- a/agedu.h
+++ b/agedu.h
@@ -88,6 +88,9 @@
 #ifdef HAVE_SYS_SELECT_H
 #  include <sys/select.h>
 #endif
+#ifdef HAVE_NETDB_H
+#  include <netdb.h>
+#endif
     
 #define PNAME "agedu"
 
@@ -106,3 +109,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) )