mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
377 B
19 lines
377 B
/***
|
|
*assert.c - Display a message and abort
|
|
*
|
|
* Copyright (c) 1988-1991, Microsoft Corporation. All rights reserved.
|
|
*
|
|
*Purpose:
|
|
*
|
|
*Revision History:
|
|
* 8-5-93 XY Module created from PPC version
|
|
*
|
|
*******************************************************************************/
|
|
|
|
#include <macos\memory.h>
|
|
#include <malloc.h>
|
|
|
|
size_t _stackavail()
|
|
{
|
|
return StackSpace();
|
|
}
|