Ensure <fcntl.h> defines the S_* constants from <sys/stat.h>.

POSIX says "The <fcntl.h> header shall define the symbolic constants for file
modes for use as values of mode_t as described in <sys/stat.h>".

Needed to build ToT strace.

Change-Id: Ia85a51ef6fd86a48084fe48ce24963000a937d37
This commit is contained in:
Elliott Hughes 2014-12-29 11:14:38 -08:00
parent a9c940a69a
commit 64d8382394

View File

@ -33,6 +33,7 @@
#include <sys/types.h>
#include <linux/fadvise.h>
#include <linux/fcntl.h>
#include <linux/stat.h>
#include <linux/uio.h>
#include <unistd.h> /* this is not required, but makes client code much happier */