xref: /openbsd-src/gnu/llvm/llvm/cmake/modules/llvm-driver-template.cpp.in (revision d415bd752c734aee168c4ee86ff32e8cc249eb16)
1//===-- driver-template.cpp -----------------------------------------------===//
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-exception
6//
7//===----------------------------------------------------------------------===//
8
9int @TOOL_NAME@_main(int argc, char **argv);
10
11int main(int argc, char **argv) { return @TOOL_NAME@_main(argc, argv); }
12