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