xref: /optee_os/lib/libutils/isoc/fp.c (revision 12fc37711783247b0d05fdc271ef007f4930767b)
1 // SPDX-License-Identifier: BSD-2-Clause
2 /*
3  * Copyright (c) 2020, Huawei Technologies Co., Ltd
4  */
5 
6 #include <stdio.h>
7 
8 struct _FILE {
9 	char dummy;
10 };
11 
12 static struct _FILE _fake_stdout;
13 static struct _FILE _fake_stderr;
14 
15 FILE *stdout = &_fake_stdout;
16 FILE *stderr = &_fake_stderr;
17