Skip to content

Commit

Permalink
fix __int64 define for icc
Browse files Browse the repository at this point in the history
  • Loading branch information
partouf authored Mar 25, 2024
1 parent fa93468 commit fa7e44c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Groundfloor/Atoms/Defines.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,9 @@
#ifdef GF_OS_LINUX
#include <unistd.h>
#define GFMillisleep(a) usleep(a*1000)

typedef long long __int64;
#ifndef __INTEL_COMPILER
typedef long long __int64;
#endif
typedef unsigned char BYTE;
typedef unsigned short WORD;
typedef unsigned long DWORD;
Expand Down

0 comments on commit fa7e44c

Please sign in to comment.