mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-06-28 22:02:39 +02:00
10 lines
140 B
C
10 lines
140 B
C
#ifndef __PRINTK_H__
|
|
#define __PRINTK_H__
|
|
|
|
#include <stdarg.h>
|
|
|
|
void printk(char *fmt, ...);
|
|
void vprintk(char *fmt, va_list args);
|
|
|
|
#endif
|