brintos

brintos / llvm-project-archived public Read only

0
0
Text · 598 B · c2cc69e Raw
28 lines · cpp
1//===----------------------------------------------------------------------===//2//3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.4// See https://llvm.org/LICENSE.txt for license information.5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception6//7//===----------------------------------------------------------------------===//8 9// test <errno.h>10 11#include <errno.h>12 13#ifndef EDOM14#error EDOM not defined15#endif16 17#ifndef EILSEQ18#error EILSEQ not defined19#endif20 21#ifndef ERANGE22#error ERANGE not defined23#endif24 25#ifndef errno26#error errno not defined27#endif28