mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-02-10 00:05:07 +00:00
11 lines
255 B
C
11 lines
255 B
C
#pragma once
|
|
|
|
// Implement C99 functions and similar that are missing in MSVC.
|
|
|
|
#if defined(_MSC_VER) && _MSC_VER < 1900
|
|
|
|
int c99_snprintf(char* str, size_t size, const char* format, ...);
|
|
#define snprintf c99_snprintf
|
|
#define vscprintf _vscprintf
|
|
|
|
#endif |