Commit 44baec75 44baec751775297631ccc0edcce6d4360627f4c4 by Sam Roberts

Need <paths.h> and <strings.h> under QNX6.

1 parent 8b580879
...@@ -38,6 +38,14 @@ ...@@ -38,6 +38,14 @@
38 #include <ctype.h> 38 #include <ctype.h>
39 #include <getopt.h> 39 #include <getopt.h>
40 40
41 #ifdef HAVE_PATHS_H
42 # include <paths.h>
43 #endif
44
45 #ifdef HAVE_STRINGS_H
46 # include <strings.h>
47 #endif
48
41 #include <mailutils/mailbox.h> 49 #include <mailutils/mailbox.h>
42 #include <mailutils/message.h> 50 #include <mailutils/message.h>
43 #include <mailutils/header.h> 51 #include <mailutils/header.h>
......