Skip to content

Commit

Permalink
Fix #ifdef to #if defined(..)
Browse files Browse the repository at this point in the history
  • Loading branch information
mnunberg committed May 29, 2013
1 parent 480e0ee commit 9dadab6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jsonsl.h
Expand Up @@ -60,7 +60,7 @@ typedef int ssize_t;
* We require a /DJSONSL_DLL so that users already using this as a static
* or embedded library don't get confused
*/
#ifdef _WIN32 && defined(JSONSL_DLL)
#if defined(_WIN32) && defined(JSONSL_DLL)
#define JSONSL_API __declspec(dllexport)
#else
#define JSONSL_API
Expand Down

0 comments on commit 9dadab6

Please sign in to comment.