glide2x djgpp build fixes #2/7:
gerror.c: _guHeapCheck() is for watcom builds only due to _heapchk()
This commit is contained in:
@@ -173,7 +173,7 @@ _grErrorDefaultCallback( const char *s, FxBool fatal )
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef __DOS__
|
#if defined(__DOS__) && defined(__WATCOMC__)
|
||||||
int _guHeapCheck( void )
|
int _guHeapCheck( void )
|
||||||
{
|
{
|
||||||
int i = _heapchk();
|
int i = _heapchk();
|
||||||
|
|||||||
@@ -183,7 +183,7 @@ _grErrorDefaultCallback( const char *s, FxBool fatal )
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef __DOS__
|
#if defined(__DOS__) && defined(__WATCOMC__)
|
||||||
int _guHeapCheck( void )
|
int _guHeapCheck( void )
|
||||||
{
|
{
|
||||||
int i = _heapchk();
|
int i = _heapchk();
|
||||||
|
|||||||
@@ -134,7 +134,7 @@ _grErrorDefaultCallback( const char *s, FxBool fatal )
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef __DOS__
|
#if defined(__DOS__) && defined(__WATCOMC__)
|
||||||
int _guHeapCheck( void )
|
int _guHeapCheck( void )
|
||||||
{
|
{
|
||||||
int i = _heapchk();
|
int i = _heapchk();
|
||||||
|
|||||||
Reference in New Issue
Block a user