xref: /qemu/tests/tcg/minilib/minilib.h (revision a113ec989b74acf6a8eac68bbe41aab141d0235c)
1*a113ec98SAlex Bennée /*
2*a113ec98SAlex Bennée  * Copyright (C) 2015 Virtual Open Systems SAS
3*a113ec98SAlex Bennée  * Author: Alexander Spyridakis <a.spyridakis@virtualopensystems.com>
4*a113ec98SAlex Bennée  *
5*a113ec98SAlex Bennée  * This program is free software; you can redistribute it and/or modify
6*a113ec98SAlex Bennée  * it under the terms of the GNU General Public License version 2 as
7*a113ec98SAlex Bennée  * published by the Free Software Foundation.
8*a113ec98SAlex Bennée  *
9*a113ec98SAlex Bennée  * SPDX-License-Identifier: GPL-2.0-only
10*a113ec98SAlex Bennée  */
11*a113ec98SAlex Bennée 
12*a113ec98SAlex Bennée #ifndef _MINILIB_H_
13*a113ec98SAlex Bennée #define _MINILIB_H_
14*a113ec98SAlex Bennée 
15*a113ec98SAlex Bennée /*
16*a113ec98SAlex Bennée  * Provided by the individual arch
17*a113ec98SAlex Bennée  */
18*a113ec98SAlex Bennée extern void __sys_outc(char c);
19*a113ec98SAlex Bennée 
20*a113ec98SAlex Bennée /*
21*a113ec98SAlex Bennée  * Provided by the common minilib
22*a113ec98SAlex Bennée  */
23*a113ec98SAlex Bennée void ml_printf(const char *fmt, ...);
24*a113ec98SAlex Bennée 
25*a113ec98SAlex Bennée #endif /* _MINILIB_H_ */
26