From f62db3f3c6f9ab4953a123062bb78b5e2a6af114 Mon Sep 17 00:00:00 2001 From: ceriel Date: Tue, 11 Jul 1989 17:02:07 +0000 Subject: [PATCH] Added #define for Free, improved text --- modules/src/alloc/alloc.3 | 2 +- modules/src/alloc/alloc.h | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/modules/src/alloc/alloc.3 b/modules/src/alloc/alloc.3 index 4d169f804..b79d2704e 100644 --- a/modules/src/alloc/alloc.3 +++ b/modules/src/alloc/alloc.3 @@ -64,7 +64,7 @@ It actually does the same as \fIRealloc\fP, and exists only for backwards compatibility. .PP All these routines use \fImalloc\fR and \fIrealloc\fR. -\fIFree\fR can be used on pointers returned by these routines. +The routine \fIfree\fR can be used on pointers returned by these routines. .PP \fISt_alloc\fR and \fIst_free\fR provide a mechanism for maintaining free lists of structures. diff --git a/modules/src/alloc/alloc.h b/modules/src/alloc/alloc.h index f84b0b13b..63211c3e5 100644 --- a/modules/src/alloc/alloc.h +++ b/modules/src/alloc/alloc.h @@ -36,4 +36,7 @@ typedef struct _ALLOC_ { #define st_free(ptr, phead, size) (botch((char *)(ptr), size), \ _A_st_free(ptr, phead, size)) #endif BOTCH_FREE + +#define Free(p) free(p) + #endif __ALLOC_INCLUDED__ -- 2.34.1