home *** CD-ROM | disk | FTP | other *** search
/ Dream 48 / Amiga_Dream_48.iso / Atari / c / sozobon-v2 / dlibs12.lha / H.ARC / FCNTL.H < prev    next >
C/C++ Source or Header  |  1987-12-11  |  399b  |  17 lines

  1. /*
  2.  *    FCNTL.H
  3.  */
  4.  
  5. #ifndef    FCNTL_H
  6. #define    FCNTL_H
  7.  
  8. #define    O_RDONLY    0x00        /* read only */
  9. #define    O_WRONLY    0x01        /* write only */
  10. #define    O_RDWR        0x02        /* read/write */
  11. #define    O_APPEND    0x10        /* position at EOF */
  12. #define    O_CREAT        0x20        /* create new file if needed */
  13. #define    O_TRUNC        0x40        /* make file 0 length */
  14. #define    O_EXCL        0x80        /* error if file exists */
  15.  
  16. #endif FCNTL_H
  17.