Wed Mar 1 11:56:05 1995 Theodore Y. Ts'o <tytso@dcl>
+ * movemail.c: Add proper #ifdef's to #include the appropriate
+ system header files.
+
* configure.in: Replace check for -lsocket and -lnsl with
WITH_NETLIB check.
#include <sys/locking.h>
#endif
+#ifdef HAS_STDLIB_H
+#include <stdlib.h>
+#else
+#ifdef __STDC__
+#ifdef NO_STDLIB_H
+#include <fake-stdlib.h>
+#else
+#include <stdlib.h>
+#endif /* NO_STDLIB_H */
+#else
+extern char *malloc(), *realloc(), *calloc();
+extern char *getenv();
+#endif /* ! __STDC__ */
+#endif /* HAS_STDLIB_H */
+
+#ifdef USE_STRING_H
+#include <string.h>
+#else
+#include <strings.h>
+#endif
+
/* Cancel substitutions made by config.h for Emacs. */
#undef open
#undef read