home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / alib / d2xx / d260 / cclib.lha / CCLib / CClib.zoo / include / fcntl.h < prev    next >
Encoding:
C/C++ Source or Header  |  1989-10-16  |  251 b   |  15 lines

  1. #ifndef FCNTL_H
  2. #define FCNTL_H 1
  3.  
  4. #define O_RDONLY 0
  5. #define O_WRONLY 1
  6. #define O_RDWR     (1<<1)
  7. #define O_CREAT  (1<<8)
  8. #define O_TRUNC  (1<<9)
  9. #define O_EXCL     (1<<10)
  10. #define O_APPEND (1<<11)
  11. #define O_CONRAW (1<<14)
  12. #define O_STDIO  (1<<15)
  13.  
  14. #endif
  15.