#ifndef _MALLOC_H_
#define _MALLOC_H_ 1

void *malloc(u_int);
void free(void*);

#endif
