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