1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 18:28:12 +00:00

LibC: Add O_ACCMODE to fcntl.h

This commit is contained in:
Dan MacDonald 2019-11-18 00:00:00 +00:00 committed by Andreas Kling
parent 39190402e4
commit aae26a3a1e

View file

@ -16,6 +16,7 @@ __BEGIN_DECLS
#define O_RDONLY 0
#define O_WRONLY 1
#define O_RDWR 2
#define O_ACCMODE 3
#define O_CREAT 0100
#define O_EXCL 0200
#define O_NOCTTY 0400