Skip to content

Commit

Permalink
fix wasm 32
Browse files Browse the repository at this point in the history
  • Loading branch information
EndrII committed Apr 29, 2021
1 parent f04313c commit e2fcdf8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/minigmp_global.h
Original file line number Diff line number Diff line change
Expand Up @@ -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


Expand Down

0 comments on commit e2fcdf8

Please sign in to comment.