Commit 7caee580 7caee580a42906ae855c81b7440f0c18e86657a8 by Sam Roberts

Fixed warnings about functions called without prototypes.

1 parent 5c987eb1
...@@ -15,6 +15,8 @@ ...@@ -15,6 +15,8 @@
15 along with this program; if not, write to the Free Software 15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ 16 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
17 17
18 #include <ctype.h>
19
18 #include "argcv.h" 20 #include "argcv.h"
19 21
20 /* 22 /*
......
...@@ -21,6 +21,8 @@ ...@@ -21,6 +21,8 @@
21 21
22 #include <sys/types.h> 22 #include <sys/types.h>
23 23
24 #include <mailutils/error.h>
25
24 #if STDC_HEADERS 26 #if STDC_HEADERS
25 # include <stdlib.h> 27 # include <stdlib.h>
26 #else 28 #else
......