Changeset 2db4ac8 in mainline for uspace/lib/libc/include/fcntl.h


Ignore:
Timestamp:
2008-01-27T16:19:25Z (17 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
15b9970
Parents:
72bde81
Message:

VFS_OPEN now understands O_CREAT and O_EXCL.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/libc/include/fcntl.h

    r72bde81 r2db4ac8  
    3636#define LIBC_FCNTL_H_
    3737
     38#define O_CREAT         1
     39#define O_EXCL          2
     40#define O_TRUNC         4
     41#define O_APPEND        8
     42#define O_RDONLY        16
     43#define O_RDWR          32
     44#define O_WRONLY        64
     45
    3846extern int open(const char *, int, ...);
    3947
Note: See TracChangeset for help on using the changeset viewer.