Include <signal.h> instead of depending on namespace pollution in

<sys/param.h>.  Include <sys/types.h> instead of of <sys/param.h>
so that further such dependencies don't develop.
This commit is contained in:
Bruce Evans 2003-04-13 08:47:30 +00:00
parent 4901f51b4e
commit 82fdc5e61b

View File

@ -63,13 +63,14 @@ __FBSDID("$FreeBSD$");
* in "to") to form the final target path.
*/
#include <sys/param.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <err.h>
#include <errno.h>
#include <fts.h>
#include <limits.h>
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>