Atmosphere/fusee/fusee-secondary/src/lib/printk.h

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