fcntl.h 485 B

123456789101112131415161718
  1. /* SPDX-License-Identifier: GPL-2.0+ WITH Linux-syscall-note */
  2. /*
  3. * Copyright 2004-2008 Analog Devices Inc.
  4. *
  5. * Licensed under the GPL-2 or later.
  6. */
  7. #ifndef _UAPI_BFIN_FCNTL_H
  8. #define _UAPI_BFIN_FCNTL_H
  9. #define O_DIRECTORY 040000 /* must be a directory */
  10. #define O_NOFOLLOW 0100000 /* don't follow links */
  11. #define O_DIRECT 0200000 /* direct disk access hint - currently ignored */
  12. #define O_LARGEFILE 0400000
  13. #include <asm-generic/fcntl.h>
  14. #endif /* _UAPI_BFIN_FCNTL_H */