brintos

brintos / llvm-project-archived public Read only

0
0
Text · 846 B · 1e534e6 Raw
20 lines · c
1/*===---- builtins.h - Standard header for extra builtins -----------------===*\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/// Some legacy compilers have builtin definitions in a file named builtins.h.10/// This header file has been added to allow compatibility with code that was11/// written for those compilers. Code may have an include line for this file12/// and to avoid an error an empty file with this name is provided.13#ifndef __BUILTINS_H14#define __BUILTINS_H15 16#if defined(__MVS__) && __has_include_next(<builtins.h>)17#include_next <builtins.h>18#endif /* __MVS__ */19#endif /* __BUILTINS_H */20