home *** CD-ROM | disk | FTP | other *** search
/ Amiga Elysian Archive / AmigaElysianArchive.iso / newlibs / cclib.lzh / fcntl.h < prev    next >
C/C++ Source or Header  |  1989-09-25  |  251b  |  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.