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:
bde 2003-04-13 08:47:30 +00:00
parent 93c5f89d55
commit 0f2f76bb73

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>