e52ee00dab
Leading underscores followed by a capital letter or underscore are reserved by the C standard. Resolves: https://gitlab.com/qemu-project/qemu/-/issues/369 Signed-off-by: Ahmed Abouzied <email@aabouzied.com> Message-Id: <20210605174938.13782-1-email@aabouzied.com> Signed-off-by: Thomas Huth <thuth@redhat.com>
26 lines
576 B
C
26 lines
576 B
C
/*
|
|
* 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_ */
|