/*
 *	$Source: /afs/sipb.mit.edu/project/sipb-athena/repository/src/moira/server/malloc.h,v $
 *	$Author: ghudson $
 *	$Header: /afs/sipb.mit.edu/project/sipb-athena/repository/src/moira/server/malloc.h,v 1.1 1996/06/02 07:44:46 ghudson Exp $
 *
 *	Copyright (C) 1993 by the Massachusetts Institute of Technology
 *
 * This is a stub routine that defines the malloc, realloc, free, etc.
 * It also #includes string.h and strings.h, so that the debugging
 * malloc can redefine them if necessary.
 */

extern char *malloc();
extern char *realloc();
extern void free();

#include <string.h>
#include <strings.h>
