Remove the #include of sys/param.h. It was meant to improve portability

for BSD less than 4.4 where sys/cdefs.h DNE but can be simulated with
param.h.  Unfortunately, the additional include did little to actually
improve portability since we've lost portability in several other chunks
of make code (err(), sysctlbyname(), probable more).

Partly submitted by:	bde
This commit is contained in:
Tim Vanderhoek 1999-09-11 13:17:35 +00:00
parent 06b1dcf182
commit c947a6678b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=51151

View file

@ -48,7 +48,6 @@
#define _MAKE_H_
#include <sys/types.h>
#include <sys/param.h>
#include <stdio.h>
#include <string.h>
#include <ctype.h>