Warning: This file is not a C or C++ file. It does not have highlighting.
| 1 | //===--------- LibC.h - Simple implementation of libc functions --- 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 | // |
| 9 | // |
| 10 | //===----------------------------------------------------------------------===// |
| 11 | |
| 12 | #ifndef OMPTARGET_LIBC_H |
| 13 | #define OMPTARGET_LIBC_H |
| 14 | |
| 15 | #include "DeviceTypes.h" |
| 16 | |
| 17 | namespace ompx { |
| 18 | |
| 19 | int printf(const char *Format, ...); |
| 20 | |
| 21 | } // namespace ompx |
| 22 | |
| 23 | #endif |
| 24 |
Warning: This file is not a C or C++ file. It does not have highlighting.
