aboutsummaryrefslogtreecommitdiff
path: root/devel/libmalloc/pkg-descr
diff options
context:
space:
mode:
Diffstat (limited to 'devel/libmalloc/pkg-descr')
-rw-r--r--devel/libmalloc/pkg-descr17
1 files changed, 0 insertions, 17 deletions
diff --git a/devel/libmalloc/pkg-descr b/devel/libmalloc/pkg-descr
deleted file mode 100644
index 40778a38319f..000000000000
--- a/devel/libmalloc/pkg-descr
+++ /dev/null
@@ -1,17 +0,0 @@
-This is a complete set of memory allocation functions (malloc and
-friends).
- The allocator is small, fast and space-efficient.
-
- It performs coalescing on frees.
-
- It has hooks for profiling, tracing and memory leak detection.
-
- It has very comprehensive and paranoid errorchecking as a compile
- time option, enough to detect most forms of heap corruption.
-
- Optionally, it attempts to be compatible with the proposed ANSI C
- Standard definition for the standard library functions malloc(),
- calloc(), realloc() and free(). By default, it is more or less
- compatible with existing Unix malloc() functions - some
- differences do exist. (Notably free(), cfree() returning void,
- realloc() not accepting a freed block)