/************************************************************************/
/* Copyright 1991 to 1995 MBARI                                         */
/************************************************************************/
/* Summary  : malloc support for Microcontroller                        */
/* Filename : malloc.h                                                  */
/* Author   : Andrew Pearce                                             */
/* Project  : Tiburon ROV                                               */
/* Version  : Version 1.0                                               */
/* Created  : 05/16/91                                                  */
/* Modified : 11/06/95                                                  */
/* Archived :                                                           */
/************************************************************************/
/* Modification History:                                                */
/* $Header: /usr/tiburon/.cvsroot/micro/h/malloc.h,v 1.1.1.1 1997/05/02 17:15:39 pean Exp $
 * $Log: malloc.h,v $
 * Revision 1.1.1.1  1997/05/02 17:15:39  pean
 * Initial release of the microcontroller software after Tiburon
 * Moolpool Dive to test IView, Lapboxes, modified Power can
 * GF/5V using bus capacitance mode.
 *
 * Revision 1.1  92/05/14  09:17:48  09:17:48  pean (Andrew Pearce 408-647-3746)
 * Initial revision
 *
*/
/************************************************************************/

#ifndef MALLOC_H
#define MALLOC_H


#ifdef __STDC__                     /* ANSI C function prototypes       */

Void initMalloc( Void );

Byte* malloc(Nat16 size);

Void free(Byte *ptr);

Void  bzero(Byte *buffer, Nat16 len);

#endif

#endif
