1*99451b44SJordan Rupprecht //===-- main.c --------------------------------------------------*- C++ -*-===// 2*99451b44SJordan Rupprecht // 3*99451b44SJordan Rupprecht // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4*99451b44SJordan Rupprecht // See https://llvm.org/LICENSE.txt for license information. 5*99451b44SJordan Rupprecht // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6*99451b44SJordan Rupprecht // 7*99451b44SJordan Rupprecht //===----------------------------------------------------------------------===// 8*99451b44SJordan Rupprecht #include <stdio.h> 9*99451b44SJordan Rupprecht 10*99451b44SJordan Rupprecht int 11*99451b44SJordan Rupprecht main (int argc, char const *argv[]) 12*99451b44SJordan Rupprecht { 13*99451b44SJordan Rupprecht printf("Break here to do the load using paths."); 14*99451b44SJordan Rupprecht return 0; 15*99451b44SJordan Rupprecht } 16