Remove h/nmh.h
[mmh] / uip / dropsbr.c
index 6a7eb78..5b5cf0e 100644 (file)
@@ -6,17 +6,13 @@
 ** complete copyright information.
 */
 
-#include <h/nmh.h>
+#include <stdlib.h>
 #include <h/utils.h>
 
 #include <h/mh.h>
 #include <h/dropsbr.h>
 #include <h/tws.h>
-
-#ifdef HAVE_ERRNO_H
-# include <errno.h>
-#endif
-
+#include <errno.h>
 #include <fcntl.h>
 
 
@@ -173,7 +169,7 @@ mbox_copy(int to, int from)
                if (i != 0 && strncmp(buffer, "From ", 5) == 0) {
                        write(to, ">", 1);
                }
-               if (write(to, buffer, strlen(buffer)) != strlen(buffer)) {
+               if (write(to, buffer, strlen(buffer)) != (int)strlen(buffer)) {
                        fclose(fp);
                        return NOTOK;
                }