Skip to content

Commit

Permalink
Specify long long for all windows
Browse files Browse the repository at this point in the history
  • Loading branch information
m-clare committed Apr 26, 2024
1 parent c6f84d6 commit e175756
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions c/triangle.c
Original file line number Diff line number Diff line change
Expand Up @@ -342,8 +342,8 @@


/* Define the size large enough to store and operate on a pointer. */
#ifdef _WIN64
#define INT_PTR unsigned __int64
#ifdef _WIN32
#define INT_PTR unsigned long long
#else
#define INT_PTR unsigned long
#endif
Expand Down

0 comments on commit e175756

Please sign in to comment.