change #ifdef mremap to #ifdef __linux__ as cpp doesn't see the function

names
This commit is contained in:
Bill Currie 2002-02-04 20:46:00 +00:00
parent f564ce6a2c
commit fe16e6d679

View file

@ -65,7 +65,7 @@ void *Hunk_Alloc (int size)
return buf;
}
#ifdef mremap
#ifdef __linux__
int Hunk_End (void)
{
byte *n;