* nmh.h -- system configuration header file
*/
+#ifdef HAVE_CONFIG_H
#include <config.h>
+#endif
#include <unistd.h>
#include <stdio.h>
# endif
#endif
+/*
+ * Defaults for programs if they aren't configured in a user's profile
+ */
+
+#define DEFAULT_PAGER "more"
+#define DEFAULT_EDITOR "vi"
+
#include <signal.h>
-
-#define bcmp(b1,b2,length) memcmp(b1, b2, length)
-#define bcopy(b1,b2,length) memcpy (b2, b1, length)
-#define bcpy(b1,b2,length) memcmp (b1, b2, length)
-#define bzero(b,length) memset (b, 0, length)