home *** CD-ROM | disk | FTP | other *** search
/ Aminet 18 / aminetcdnumber181997.iso / Aminet / misc / emu / AROS_m68k_bin.lha / AROS / include / fcntl.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-02-08  |  552 b   |  28 lines

  1. #ifndef _FCNTL_H
  2. #define _FCNTL_H
  3.  
  4. /*
  5.     (C) 1995-96 AROS - The Amiga Replacement OS
  6.     $Id: fcntl.h,v 1.1 1997/01/15 17:48:50 digulla Exp $
  7.  
  8.     Desc: ANSI-C header file fcntl.h
  9.     Lang: english
  10. */
  11.  
  12. /* Flags for open */
  13. #define O_ACCMODE    0x0003
  14. #define O_RDONLY    0x0000
  15. #define O_WRONLY    0x0001
  16. #define O_RDWR        0x0002
  17. #define O_CREAT     0x0040
  18. #define O_EXCL        0x0080
  19. #define O_NOCTTY    0x0100
  20. #define O_TRUNC     0x0200
  21. #define O_APPEND    0x0400
  22. #define O_NONBLOCK    0x0800
  23. #define O_NDELAY    O_NONBLOCK /* Alias */
  24. #define O_SYNC        0x1000
  25.  
  26.  
  27. #endif /* _FCNTL_H */
  28.