replace hash.c; speedup/cleanup from Chris Torek
[unix-history] / usr / src / usr.bin / make / lst.lib / lstInt.h
index 6e80f18..54bd267 100644 (file)
@@ -7,7 +7,7 @@
  *
  * %sccs.include.redist.c%
  *
  *
  * %sccs.include.redist.c%
  *
- *     @(#)lstInt.h    5.3 (Berkeley) %G%
+ *     @(#)lstInt.h    5.4 (Berkeley) %G%
  */
 
 /*-
  */
 
 /*-
@@ -61,7 +61,7 @@ typedef struct        {
  * PAlloc (var, ptype) --
  *     Allocate a pointer-typedef structure 'ptype' into the variable 'var'
  */
  * PAlloc (var, ptype) --
  *     Allocate a pointer-typedef structure 'ptype' into the variable 'var'
  */
-#define        PAlloc(var,ptype)       var = (ptype) Malloc (sizeof (*var))
+#define        PAlloc(var,ptype)       var = (ptype) malloc (sizeof (*var))
 
 /*
  * LstValid (l) --
 
 /*
  * LstValid (l) --