Added #define for Free, improved text
authorceriel <none@none>
Tue, 11 Jul 1989 17:02:07 +0000 (17:02 +0000)
committerceriel <none@none>
Tue, 11 Jul 1989 17:02:07 +0000 (17:02 +0000)
modules/src/alloc/alloc.3
modules/src/alloc/alloc.h

index 4d169f8..b79d270 100644 (file)
@@ -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.
index f84b0b1..63211c3 100644 (file)
@@ -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__