A small patch from rhoenie to make our source compatible with the Intel C Compiler.

Our makefile would need more setup and I currently don't have any means of testing.

git-svn-id: https://svn.eduke32.com/eduke32@5757 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
hendricks266 2016-05-29 21:11:12 +00:00
parent a9da9832af
commit 225f37f7b0
1 changed files with 2 additions and 0 deletions

View File

@ -43,7 +43,9 @@ credits.
#if !defined(_WIN32)
#include <unistd.h>
#include <dirent.h>
# if !defined __INTEL_COMPILER
typedef long long __int64;
# endif
static __inline int32_t _lrotl(int32_t i, int sh)
{ return((i>>(-sh))|(i<<sh)); }
/*__inline*/ int32_t filelength(int h)