1330d8983SJohannes Doerfert //===--------- LibC.h - Simple implementation of libc functions --- C++ -*-===// 2330d8983SJohannes Doerfert // 3330d8983SJohannes Doerfert // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4330d8983SJohannes Doerfert // See https://llvm.org/LICENSE.txt for license information. 5330d8983SJohannes Doerfert // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6330d8983SJohannes Doerfert // 7330d8983SJohannes Doerfert //===----------------------------------------------------------------------===// 8330d8983SJohannes Doerfert // 9330d8983SJohannes Doerfert // 10330d8983SJohannes Doerfert //===----------------------------------------------------------------------===// 11330d8983SJohannes Doerfert 12330d8983SJohannes Doerfert #ifndef OMPTARGET_LIBC_H 13330d8983SJohannes Doerfert #define OMPTARGET_LIBC_H 14330d8983SJohannes Doerfert 1508533a3eSJohannes Doerfert #include "DeviceTypes.h" 16330d8983SJohannes Doerfert 17*2d9f4069SJoseph Huber namespace ompx { 18330d8983SJohannes Doerfert 19*2d9f4069SJoseph Huber int printf(const char *Format, ...); 20*2d9f4069SJoseph Huber 21*2d9f4069SJoseph Huber } // namespace ompx 22330d8983SJohannes Doerfert 23330d8983SJohannes Doerfert #endif 24