Updated #include's to point to new location of mts.h on mts/generic
[mmh] / uip / sendsbr.c
index 245a538..2c2e3a6 100644 (file)
 #include <fcntl.h>
 #include <h/mime.h>
 
+#ifdef TIME_WITH_SYS_TIME
+# include <sys/time.h>
+# include <time.h>
+#else
+# ifdef TM_IN_SYS_TIME
+#  include <sys/time.h>
+# else
+#  include <time.h>
+# endif
+#endif
+
 int debugsw = 0;               /* global */
 int forwsw  = 1;
 int inplace = 1;
@@ -31,7 +42,7 @@ static jmp_buf env;
  * external prototypes
  */
 int sendsbr (char **, int, char *, struct stat *, int);
-void done (int);
+int done (int);
 char *getusername (void);
 
 /*
@@ -640,11 +651,12 @@ oops:
 }
 
 
-void
+int
 done (int status)
 {
     if (armed)
        longjmp (env, status ? status : NOTOK);
 
     exit (status);
+    return 1;  /* dead code to satisfy the compiler */
 }