mirror of
https://git.code.sf.net/p/quake/quake2forge
synced 2024-12-13 14:11:35 +00:00
change #ifdef mremap to #ifdef __linux__ as cpp doesn't see the function
names
This commit is contained in:
parent
f564ce6a2c
commit
fe16e6d679
1 changed files with 1 additions and 1 deletions
|
@ -65,7 +65,7 @@ void *Hunk_Alloc (int size)
|
|||
return buf;
|
||||
}
|
||||
|
||||
#ifdef mremap
|
||||
#ifdef __linux__
|
||||
int Hunk_End (void)
|
||||
{
|
||||
byte *n;
|
||||
|
|
Loading…
Reference in a new issue