summaryrefslogtreecommitdiff
path: root/clients/xzwrite/nmalloc.h
diff options
context:
space:
mode:
Diffstat (limited to 'clients/xzwrite/nmalloc.h')
-rw-r--r--clients/xzwrite/nmalloc.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/clients/xzwrite/nmalloc.h b/clients/xzwrite/nmalloc.h
deleted file mode 100644
index 57144c7..0000000
--- a/clients/xzwrite/nmalloc.h
+++ /dev/null
@@ -1,20 +0,0 @@
-#ifndef _malloc_
-#define _malloc_
-
-#define New(TYPE) ((TYPE *)malloc(sizeof(TYPE)))
-malloc_init ( /* start */ );
-int m_blocksize( /* a_block */ );
-char * malloc ( /* n */ ); /* get a block */
-free ( /* mem */ );
-char * realloc ( /* mem, n */ );
-struct mstats_value
- {
- int blocksize;
- int nfree;
- int nused;
- };
-struct mstats_value malloc_stats ( /* size */ );
-get_lim_data ( /* */ );
-get_lim_data ( /* */ );
-get_lim_data ( /* */ );
-#endif _malloc_