Files
ac-decomp/include/MSL_C/printf.h
T
2023-03-15 16:46:43 -04:00

12 lines
174 B
C

#ifndef MSL_PRINTF_H
#define MSL_PRINTF_H
#include "types.h"
#include "va_args.h"
extern void vprintf(const char*, va_list);
extern void printf(const char*, ...);
#endif