2020-09-30 17:12:29 +02:00

24 lines
350 B
C

/***
*heapadd.c -
*
* Copyright (c) 1994, Microsoft Corporation. All rights reserved.
*
*Purpose:
*
*Revision History:
*
*******************************************************************************/
#include <cruntime.h>
#include <malloc.h>
#include <winheap.h>
int __cdecl
_heapadd (
void * block,
size_t size
)
{
return(-1);
}