Skip to content

Commit

Permalink
Corrected __EXPORT__ test for Solaris.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Apr 21, 2009
1 parent 652f0ec commit cedcd95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/physfs.h
Expand Up @@ -221,7 +221,7 @@ extern "C" {
#define __EXPORT__ __declspec(dllexport)
#elif (defined __SUNPRO_C)
#define __EXPORT__ __global
#elif ((__GNUC__ >= 3) && (!__EMX__))
#elif ((__GNUC__ >= 3) && (!__EMX__) && (!sun))
#define __EXPORT__ __attribute__((visibility("default")))
#else
#define __EXPORT__
Expand Down

0 comments on commit cedcd95

Please sign in to comment.