Skip to content

Commit

Permalink
Undefine "CALL" macro in cosimulation.c
Browse files Browse the repository at this point in the history
fixes #551
  • Loading branch information
t-sommer committed Sep 11, 2024
1 parent 3565850 commit b35b34b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/cosimulation.c
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@
#define strdup _strdup
#endif

#ifdef CALL
#undef CALL
#endif

#define CALL(f) do { const Status status = f; if (status != OK) return status; } while (false)


Expand Down

0 comments on commit b35b34b

Please sign in to comment.