/* * Copyright (C) James R. Leu 2000 * jleu@mindspring.com * * This software is covered under the LGPL, for more * info check out http://www.gnu.org/copyleft/lgpl.html */ #ifndef _LPD_MM_IMPL_H_ #define _LPD_MM_IMPL_H_ #include "ldp_struct.h" /* * in: size * return: void* */ extern void* ldp_malloc(const ldp_size_type size); /* * in: mem */ extern void ldp_free(void* mem); #endif