blob: 2ea9c7dd1a5e76eae402ee767154a5055f69279a [file] [log] [blame]
#if defined _WIN32 || defined __CYGWIN__
#define DLL_PUBLIC __declspec(dllexport)
#else
#define DLL_PUBLIC
#endif
int DLL_PUBLIC foo(void) {
return 0;
}