summaryrefslogtreecommitdiffstats
path: root/tests/tcg/minilib/minilib.h
blob: e23361380ae374cc88405fa9580ff8c0743f5e15 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*
 * Copyright (C) 2015 Virtual Open Systems SAS
 * Author: Alexander Spyridakis <a.spyridakis@virtualopensystems.com>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 *
 * SPDX-License-Identifier: GPL-2.0-only
 */

#ifndef _MINILIB_H_
#define _MINILIB_H_

/*
 * Provided by the individual arch
 */
extern void __sys_outc(char c);

/*
 * Provided by the common minilib
 */
void ml_printf(const char *fmt, ...);

#endif /* _MINILIB_H_ */