blob: 1f3cc595be9c412156bb1e362bbaa7c69905d91f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007 Wind River Systems, Inc. and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Wind River Systems - initial API and implementation
*******************************************************************************/
/*
* Local memory heap manager.
*/
#ifndef D_myalloc
#define D_myalloc
#include <stdlib.h>
void * loc_alloc(size_t size);
void * loc_alloc_zero(size_t size);
void * loc_realloc(void *ptr, size_t size);
void loc_free(void *p);
#endif