Changed done() from returning void to returning int so that main()s who call
authorDan Harkless <dan@harkless.org>
Fri, 16 Jul 1999 00:50:01 +0000 (00:50 +0000)
committerDan Harkless <dan@harkless.org>
Fri, 16 Jul 1999 00:50:01 +0000 (00:50 +0000)
done() at the end can instead return done() at the end to eliminate the
compilation warning about falling off the end of a non-void function.

h/prototypes.h

index 0dccfa2..5fe0b0c 100644 (file)
@@ -48,7 +48,7 @@ void cpydata (int, int, char *, char *);
 void cpydgst (int, int, char *, char *);
 int decode_rfc2047 (char *, char *);
 void discard (FILE *);
-void done (int);
+int done (int);
 int fdcompare (int, int);
 int folder_addmsg (struct msgs **, char *, int, int, int);
 int folder_delmsgs (struct msgs *, int);