* complete copyright information.
*/
-#include <h/mh.h>
+#include "h/mh.h"
+#include "sbr/context_read.h"
#include "sbr/m_maildir.h"
#include <pwd.h>
* 3) Next, check in nmh Mail directory.
* 4) Next, check in nmh `etc' directory.
*
+ * Does not return NULL.
*/
char *
/* Check nmh `etc' directory */
snprintf (epath, sizeof(epath), nmhetcdir(/%s), file);
- return (access (epath, R_OK) != NOTOK ? epath : file);
+ return access(epath, R_OK) != NOTOK ? epath : file;
}