xref: /optee_os/lib/libutils/isoc/fputs.c (revision 9756bcc46d64a1631546811382b397068af73c44)
1 // SPDX-License-Identifier: BSD-2-Clause
2 /*
3  * Copyright (c) 2020, Huawei Technologies Co., Ltd
4  */
5 
6 #include <stdio.h>
7 #include <stdlib.h>
8 #include <trace.h>
9 
10 int fputs(const char *s, FILE *stream)
11 {
12 	if (stream != stdout && stream != stderr)
13 		abort();
14 
15 	trace_ext_puts(s);
16 	return 0;
17 }
18