1*83f875dcSMike Crowe//===--- cstdio - Stub header for tests -------------------------*- C++ -*-===// 2*83f875dcSMike Crowe// 3*83f875dcSMike Crowe// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4*83f875dcSMike Crowe// See https://llvm.org/LICENSE.txt for license information. 5*83f875dcSMike Crowe// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6*83f875dcSMike Crowe// 7*83f875dcSMike Crowe//===----------------------------------------------------------------------===// 8*83f875dcSMike Crowe 9*83f875dcSMike Crowe#ifndef _STDIO_ 10*83f875dcSMike Crowe#define _STDIO_ 11*83f875dcSMike Crowe 12*83f875dcSMike Crowe#include <stdio.h> 13*83f875dcSMike Crowe 14*83f875dcSMike Crowenamespace std { 15*83f875dcSMike Crowe using ::FILE; 16*83f875dcSMike Crowe using ::printf; 17*83f875dcSMike Crowe using ::fprintf; 18*83f875dcSMike Crowe} 19*83f875dcSMike Crowe 20*83f875dcSMike Crowe#endif // _STDIO_ 21*83f875dcSMike Crowe 22