mirror of
https://github.com/Fennix-Project/Userspace.git
synced 2025-05-27 15:04:25 +00:00
11 lines
215 B
C
11 lines
215 B
C
#include <init.h>
|
|
|
|
void init_log(const char *fmt, ...)
|
|
{
|
|
printf_libinit("\eCCCCCC[\e0088FFinit\eCCCCCC] \eAAAAAA");
|
|
va_list args;
|
|
va_start(args, fmt);
|
|
vprintf_libinit(fmt, args);
|
|
va_end(args);
|
|
}
|