Skip to content

Commit

Permalink
Fix _MSC_VER in cmd/core/whereami
Browse files Browse the repository at this point in the history
  • Loading branch information
agievich committed Jun 4, 2024
1 parent ae7d1d2 commit e67ad48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/core/whereami.c
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ extern "C" {
#if defined(_MSC_VER)
#pragma warning(pop)
#endif
#if (MSC_VER >= 1800)
#if (_MSC_VER >= 1900)
#include <stdbool.h>
#else
#define bool int
Expand Down

0 comments on commit e67ad48

Please sign in to comment.