From 482dd2f67b3254c4b72ecce7d903f9f25f9d9dda Mon Sep 17 00:00:00 2001 From: Daniel Jacobowitz Date: Thu, 4 May 2006 15:12:00 +0000 Subject: 2006-05-04 Steve Ellcey * blt, iwidgets, mmalloc: Remove directories. --- mmalloc/mmalloc.h | 62 ------------------------------------------------------- 1 file changed, 62 deletions(-) delete mode 100644 mmalloc/mmalloc.h (limited to 'mmalloc/mmalloc.h') diff --git a/mmalloc/mmalloc.h b/mmalloc/mmalloc.h deleted file mode 100644 index 082547e..0000000 --- a/mmalloc/mmalloc.h +++ /dev/null @@ -1,62 +0,0 @@ -#ifndef MMALLOC_H -#define MMALLOC_H 1 - -#ifdef HAVE_STDDEF_H -# include -#else -# include /* for size_t */ -# include /* for NULL */ -#endif - -#include "ansidecl.h" - -/* Allocate SIZE bytes of memory. */ - -extern PTR mmalloc PARAMS ((PTR, size_t)); - -/* Re-allocate the previously allocated block in PTR, making the new block - SIZE bytes long. */ - -extern PTR mrealloc PARAMS ((PTR, PTR, size_t)); - -/* Allocate NMEMB elements of SIZE bytes each, all initialized to 0. */ - -extern PTR mcalloc PARAMS ((PTR, size_t, size_t)); - -/* Free a block allocated by `mmalloc', `mrealloc' or `mcalloc'. */ - -extern void mfree PARAMS ((PTR, PTR)); - -/* Allocate SIZE bytes allocated to ALIGNMENT bytes. */ - -extern PTR mmemalign PARAMS ((PTR, size_t, size_t)); - -/* Allocate SIZE bytes on a page boundary. */ - -extern PTR mvalloc PARAMS ((PTR, size_t)); - -/* Activate a standard collection of debugging hooks. */ - -extern int mmcheck PARAMS ((PTR, void (*) (void))); - -extern int mmcheckf PARAMS ((PTR, void (*) (void), int)); - -/* Pick up the current statistics. (see FIXME elsewhere) */ - -extern struct mstats mmstats PARAMS ((PTR)); - -extern PTR mmalloc_attach PARAMS ((int, PTR)); - -extern PTR mmalloc_detach PARAMS ((PTR)); - -extern int mmalloc_setkey PARAMS ((PTR, int, PTR)); - -extern PTR mmalloc_getkey PARAMS ((PTR, int)); - -extern int mmalloc_errno PARAMS ((PTR)); - -extern int mmtrace PARAMS ((void)); - -extern PTR mmalloc_findbase PARAMS ((int)); - -#endif /* MMALLOC_H */ -- cgit v1.1