fix wasm 32

This commit is contained in:
Andrei Yankovich 2021-04-29 23:31:53 +03:00
parent f04313ce55
commit e2fcdf8281

@ -10,10 +10,10 @@
#ifdef _WIN32
# define MINIGMPSHARED_EXPORT __declspec(dllexport)
#endif
#if defined (linux) || defined (__linux__) || defined (__APPLE__)
#elif (linux) || defined (__linux__) || defined (__APPLE__)
# define MINIGMPSHARED_EXPORT __attribute__((visibility("default")))
#else
# define MINIGMPSHARED_EXPORT
#endif