Do not include both <sys/types.h> and <sys/param.h>, it is a style bug as

sys/types.h is included in sys/param.h, so instead just move the
#include <sys/param.h> before the headers that need it.

Spotted out by:	bde
This commit is contained in:
Olivier Houchard 2006-11-01 12:41:43 +00:00
parent c4639cb3d8
commit da834c5711
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=163871

View file

@ -25,9 +25,8 @@
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <machine/asm.h>
#include <sys/types.h>
#include <sys/elf32.h>
#include <sys/param.h>
#include <sys/elf32.h>
#include <sys/inflate.h>
#include <machine/elf.h>
#include <machine/pte.h>