mirror of
https://git.code.sf.net/p/quake/quake2forge
synced 2025-01-05 17:31:08 +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;
|
return buf;
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef mremap
|
#ifdef __linux__
|
||||||
int Hunk_End (void)
|
int Hunk_End (void)
|
||||||
{
|
{
|
||||||
byte *n;
|
byte *n;
|
||||||
|
|
Loading…
Reference in a new issue