| //===-- Definition of macros from unistd.h --------------------------------===// |
| // |
| // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| // See https://llvm.org/LICENSE.txt for license information. |
| // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
| // |
| //===----------------------------------------------------------------------===// |
| |
| #ifndef __LLVM_LIBC_MACROS_LINUX_UNISTD_MACROS_H |
| #define __LLVM_LIBC_MACROS_LINUX_UNISTD_MACROS_H |
| |
| // Values for mode argument to the access(...) function. |
| #define F_OK 0 |
| #define X_OK 1 |
| #define W_OK 2 |
| #define R_OK 4 |
| |
| #endif // __LLVM_LIBC_MACROS_LINUX_UNISTD_MACROS_H |