17 lines
278 B
C
17 lines
278 B
C
/* $Id$ */
|
|
/* Copyright (c) 2018 Pierre Pronchery <khorben@defora.org> */
|
|
/* 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 */
|