From: Mike Frysinger <vapier@gentoo.org> Date: Sat, 29 Apr 2006 04:43:31 +0000 (-0000) Subject: just include fcntl.h not sys/fcntl.h X-Git-Tag: 1_2_0~470 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=706f8f6de5d622a9094f7e694982c935675e578c;p=oweals%2Fbusybox.git just include fcntl.h not sys/fcntl.h --- diff --git a/init/init.c b/init/init.c index 575ab9775..22fb33dfd 100644 --- a/init/init.c +++ b/init/init.c @@ -24,7 +24,7 @@ #include <termios.h> #include <unistd.h> #include <limits.h> -#include <sys/fcntl.h> +#include <fcntl.h> #include <sys/ioctl.h> #include <sys/types.h> #include <sys/wait.h>