hbc/wiipax/stub/vsprintf.h
2016-11-23 14:35:12 +09:00

10 lines
129 B
C

#ifndef _VSPRINTF_H_
#define _VSPRINTF_H_
#include <stdarg.h>
int vsprintf(char *buf, const char *fmt, va_list args);
#endif