Path: utzoo!telly!attcan!uunet!auspex!guy From: guy@auspex.auspex.com (Guy Harris) Newsgroups: comp.std.c Subject: Re: cfree() is what?? Message-ID: <3668@auspex.auspex.com> Date: 15 Jul 90 19:59:49 GMT References: <1990Jul14.214617.2071@athena.mit.edu> <13353@smoke.BRL.MIL> Organization: Auspex Systems, Santa Clara Lines: 6 >cfree() is just an obsolete duplicate name for free(). >Change "cfree" to "free". Obsolete yes, duplicate no; "cfree()" took three arguments, the latter two of which are ignored in the implementations I know about. Change "cfree(a, b, c)" to "free(a)".