diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2001-05-29 12:53:49 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2001-05-29 12:53:49 +0000 |
commit | 14959b87a7868b8591017204f0844a5d4bb29a42 (patch) | |
tree | f685e41abdfa80732cf331c96a58b6b56ef70970 /usr.bin/make/main.c | |
parent | b6985ed543fc10d606789bf3477ec48cc4a3bf2d (diff) |
Take includes out of lst.h, re-add what's needed to separate files.
Removes remaining lint stuff from lst.lib.
Diffstat (limited to 'usr.bin/make/main.c')
-rw-r--r-- | usr.bin/make/main.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/make/main.c b/usr.bin/make/main.c index 4107e4272fa..b81881cde7b 100644 --- a/usr.bin/make/main.c +++ b/usr.bin/make/main.c @@ -1,5 +1,5 @@ /* $OpenPackages$ */ -/* $OpenBSD: main.c,v 1.48 2001/05/23 12:34:46 espie Exp $ */ +/* $OpenBSD: main.c,v 1.49 2001/05/29 12:53:41 espie Exp $ */ /* $NetBSD: main.c,v 1.34 1997/03/24 20:56:36 gwr Exp $ */ /* @@ -40,6 +40,7 @@ * SUCH DAMAGE. */ +#include <sys/param.h> #include <sys/types.h> #include <sys/stat.h> #ifndef MAKE_BOOTSTRAP @@ -47,6 +48,7 @@ #endif #include <errno.h> #include <stdio.h> +#include <stdlib.h> #include <string.h> #include <unistd.h> #include "config.h" |