/* $Id$ */ /* Copyright (c) 2018 Pierre Pronchery */ /* This file is part of DeforaOS uKernel */ #ifndef UKERNEL_FCNTL_H # define UKERNEL_FCNTL_H /* constants */ # define O_RDONLY 0 # define O_WRONLY 1 # define O_RDWR 2 #endif /* !UKERNEL_FCNTL_H */