mirror of
https://github.com/encounter/ogws.git
synced 2026-03-30 11:33:37 -07:00
22 lines
320 B
Plaintext
22 lines
320 B
Plaintext
#ifndef MSL_CPP_CSTDIO_H
|
|
#define MSL_CPP_CSTDIO_H
|
|
#include <stdio.h>
|
|
#ifdef __cplusplus
|
|
|
|
namespace std {
|
|
using ::fclose;
|
|
using ::fflush;
|
|
using ::FILE;
|
|
using ::ftell;
|
|
using ::fwide;
|
|
using ::snprintf;
|
|
using ::sprintf;
|
|
using ::sscanf;
|
|
using ::vprintf;
|
|
using ::vsnprintf;
|
|
using ::vsprintf;
|
|
} // namespace std
|
|
|
|
#endif
|
|
#endif
|