(xmalloc, xrealloc, skip_to_lf sysfail): Prototype.
* 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)