summaryrefslogtreecommitdiff
path: root/lib-src
diff options
context:
space:
mode:
Diffstat (limited to 'lib-src')
-rw-r--r--lib-src/cvtmail.c16
1 files changed, 10 insertions, 6 deletions
diff --git a/lib-src/cvtmail.c b/lib-src/cvtmail.c
index 85c5512abfc..b967f81d428 100644
--- a/lib-src/cvtmail.c
+++ b/lib-src/cvtmail.c
@@ -33,17 +33,21 @@ Boston, MA 02111-1307, USA. */
* Author: Larry Kolodney, 1985
*/
-
+#include "config.h"
#include <stdio.h>
+#ifndef HAVE_STDLIB_H
char *malloc ();
char *realloc ();
char *getenv ();
-
-char *xmalloc ();
-char *xrealloc ();
-void skip_to_lf ();
-void sysfail ();
+#else
+#include <stdlib.h>
+#endif
+
+char *xmalloc __P ((unsigned));
+char *xrealloc __P ((char *, unsigned));
+void skip_to_lf __P ((FILE *));
+void sysfail __P ((char *));
int
main (argc, argv)