fixes q order problems and temporary file names when inchar > 'z'.
[unix-history] / usr / src / bin / rmail / rmail.c
index c66bcd5..aa114df 100644 (file)
@@ -9,13 +9,17 @@
 
 # include <stdio.h>
 # include <sysexits.h>
 
 # include <stdio.h>
 # include <sysexits.h>
-# include "useful.h"
 # include "conf.h"
 
 # include "conf.h"
 
-SCCSID(@(#)rmail.c     3.11    (Berkeley)      %G%);
+static char    SccsId[] =      "@(#)rmail.c    4.3     (Berkeley)      %G%";
 
 
-extern FILE *popen();
-extern char *index();
+typedef char   bool;
+#define TRUE   1
+#define FALSE  0
+
+extern FILE    *popen();
+extern char    *index();
+extern char    *rindex();
 
 bool   Debug;
 
 
 bool   Debug;