hbc/wiipax/stub/vsprintf.h

10 lines
129 B
C
Raw Normal View History

2016-11-23 06:35:12 +01:00
#ifndef _VSPRINTF_H_
#define _VSPRINTF_H_
#include <stdarg.h>
int vsprintf(char *buf, const char *fmt, va_list args);
#endif