Path: blob/main/contrib/llvm-project/libc/include/llvm-libc-macros/generic-error-number-macros.h
213766 views
//===-- Definition of generic error number macros -------------------------===//1//2// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.3// See https://llvm.org/LICENSE.txt for license information.4// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception5//6//===----------------------------------------------------------------------===//78#ifndef LLVM_LIBC_MACROS_GENERIC_ERROR_NUMBER_MACROS_H9#define LLVM_LIBC_MACROS_GENERIC_ERROR_NUMBER_MACROS_H1011#define EPERM 112#define ENOENT 213#define ESRCH 314#define EINTR 415#define EIO 516#define ENXIO 617#define E2BIG 718#define ENOEXEC 819#define EBADF 920#define ECHILD 1021#define EAGAIN 1122#define ENOMEM 1223#define EACCES 1324#define EFAULT 1425#define ENOTBLK 1526#define EBUSY 1627#define EEXIST 1728#define EXDEV 1829#define ENODEV 1930#define ENOTDIR 2031#define EISDIR 2132#define EINVAL 2233#define ENFILE 2334#define EMFILE 2435#define ENOTTY 2536#define ETXTBSY 2637#define EFBIG 2738#define ENOSPC 2839#define ESPIPE 2940#define EROFS 3041#define EMLINK 3142#define EPIPE 3243#define EDOM 3344#define ERANGE 3445#define EILSEQ 844647#endif // LLVM_LIBC_MACROS_GENERIC_ERROR_NUMBER_MACROS_H484950