xref: /llvm-project/lldb/test/API/functionalities/load_using_paths/main.cpp (revision 99451b4453688a94c6014cac233d371ab4cc342d)
1 //===-- main.c --------------------------------------------------*- C++ -*-===//
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 #include <stdio.h>
9 
10 int
11 main (int argc, char const *argv[])
12 {
13     printf("Break here to do the load using paths.");
14     return 0;
15 }
16