]> diplodocus.org Git - nmh/blobdiff - h/nmh.h
Remove trailing spaces from lines in man pages.
[nmh] / h / nmh.h
diff --git a/h/nmh.h b/h/nmh.h
index ca32f58b738b762d5d704f611e407a825d8b94a7..d88ec529988e36c0ab40be9c3fdd9f3df5d08795 100644 (file)
--- a/h/nmh.h
+++ b/h/nmh.h
 # include <sbr/ctype-checked.h>
 #endif
 #include <assert.h>
 # include <sbr/ctype-checked.h>
 #endif
 #include <assert.h>
+
+#ifdef HAVE_STDBOOL_H
+# include <stdbool.h>
+#else
+# define bool int
+# define true 1
+# define false 0
+#endif
+
 #include <sys/stat.h>
 #include <sys/wait.h>
 
 #include <sys/stat.h>
 #include <sys/wait.h>
 
 # endif
 #endif
 
 # endif
 #endif
 
+#ifndef HAVE_GETLINE
+ssize_t getline(char **lineptr, size_t *n, FILE *stream);
+#endif
+
 /*
  * Defaults for programs if they aren't configured in a user's profile
  */
 
 #define DEFAULT_PAGER "more"
 #define DEFAULT_EDITOR "vi"
 /*
  * Defaults for programs if they aren't configured in a user's profile
  */
 
 #define DEFAULT_PAGER "more"
 #define DEFAULT_EDITOR "vi"
-
-#include <signal.h>