mirror of
https://github.com/libretro/scenewalker-libretro.git
synced 2024-11-30 11:31:33 +00:00
15 lines
185 B
C++
15 lines
185 B
C++
#ifndef SHARED_HPP__
|
|
#define SHARED_HPP__
|
|
|
|
#ifdef _MSC_VER
|
|
#include <memory>
|
|
#define snprintf _snprintf
|
|
#else
|
|
#include <tr1/memory>
|
|
#endif
|
|
|
|
void retro_stderr(const char *str);
|
|
|
|
#endif
|
|
|