mirror of
https://github.com/reactos/reactos.git
synced 2024-11-09 08:08:38 +00:00
385fdfdfeb
svn path=/trunk/; revision=3674
17 lines
455 B
C
17 lines
455 B
C
/* $Id: heap.c,v 1.3 2002/10/29 04:45:33 rex Exp $
|
|
*
|
|
* FILE: reactos/subsys/psx/lib/psxdll/misc/heap.c
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
* PROJECT: ReactOS POSIX+ Subsystem
|
|
* PURPOSE: Support routines for crt0.c
|
|
* UPDATE HISTORY:
|
|
* 2001-05-06
|
|
*/
|
|
#define NTOS_MODE_USER
|
|
#include <ntos.h>
|
|
#include <napi/teb.h>
|
|
HANDLE STDCALL GetProcessHeap (VOID)
|
|
{
|
|
return (HANDLE)NtCurrentPeb()->ProcessHeap;
|
|
}
|
|
/* EOF */
|