disk-utils: include fcntl.h directly (mkfs.cramfs, raw)

helps klibc support, glibc compile tested.

Signed-off-by: maximilian attems <max@stro.at>
This commit is contained in:
maximilian attems 2008-07-24 15:08:16 +02:00 committed by Karel Zak
parent 7574f09b3d
commit d5c28ebc32
2 changed files with 2 additions and 2 deletions

View File

@ -28,7 +28,7 @@
#include <sys/stat.h>
#include <unistd.h>
#include <sys/mman.h>
#include <sys/fcntl.h>
#include <fcntl.h>
#include <dirent.h>
#include <stdlib.h>
#include <errno.h>

View File

@ -15,7 +15,7 @@
#include <unistd.h>
#include <errno.h>
#include <string.h>
#include <sys/fcntl.h>
#include <fcntl.h>
#include <sys/stat.h>
#include <sys/ioctl.h>
#include <sys/sysmacros.h>