xref: /optee_os/lib/libutils/isoc/fp.c (revision ff114e13926ad6a177ec9481f4ec043671326413)
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