mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-23 06:34:18 -04:00
12 lines
174 B
C
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
|