Skip to content

Commit

Permalink
mangle: change preprocessor define for macosx
Browse files Browse the repository at this point in the history
__DARWIN is still not defined, use __APPLE__ instead
  • Loading branch information
pigoz committed Aug 1, 2012
1 parent 38e705b commit f05013c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mangle.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
#define attribute_used
#endif

#if defined(_WIN32) || defined(__DARWIN)
#if defined(_WIN32) || defined(__APPLE__)
#define EXTERN_PREFIX "_"
#else
#define EXTERN_PREFIX ""
Expand Down

0 comments on commit f05013c

Please sign in to comment.