1*a9ac8606Spatrick /*===---- builtins.h - Standard header for extra builtins -----------------===*\ 2*a9ac8606Spatrick * 3*a9ac8606Spatrick * Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4*a9ac8606Spatrick * See https://llvm.org/LICENSE.txt for license information. 5*a9ac8606Spatrick * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6*a9ac8606Spatrick * 7*a9ac8606Spatrick \*===----------------------------------------------------------------------===*/ 8*a9ac8606Spatrick 9*a9ac8606Spatrick /// Some legacy compilers have builtin definitions in a file named builtins.h. 10*a9ac8606Spatrick /// This header file has been added to allow compatibility with code that was 11*a9ac8606Spatrick /// written for those compilers. Code may have an include line for this file 12*a9ac8606Spatrick /// and to avoid an error an empty file with this name is provided. 13*a9ac8606Spatrick #ifndef __BUILTINS_H 14*a9ac8606Spatrick #define __BUILTINS_H 15*a9ac8606Spatrick 16*a9ac8606Spatrick #endif /* __BUILTINS_H */ 17