Staging
v0.5.1
https://github.com/torvalds/linux
Raw File
Tip revision: b8291ad07a7f3b5b990900f0001198ac23ba893e authored by Linus Torvalds on 18 May 2008, 21:36:41 UTC
Linux 2.6.26-rc3
Tip revision: b8291ad
fcntl.h
#ifndef _ASM_FCNTL_H
#define _ASM_FCNTL_H

#define O_DIRECTORY      040000	/* must be a directory */
#define O_NOFOLLOW      0100000	/* don't follow links */
#define O_LARGEFILE     0200000
#define O_DIRECT	0400000	/* direct disk access hint */

#include <asm-generic/fcntl.h>

#endif /* _ASM_FCNTL_H */
back to top