25 lines · c
1//===--- stdio.h - Stub header for tests ------------------------*- 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-exception6//7//===----------------------------------------------------------------------===//8 9#ifndef _STDIO_H_10#define _STDIO_H_11 12// A header intended to contain C standard input and output library13// declarations.14 15typedef struct structFILE {} FILE;16extern FILE *stderr;17 18int printf(const char *, ...);19int fprintf(FILE *, const char *, ...);20 21#define NULL (0)22 23#endif // _STDIO_H_24 25