Path: utzoo!utgpu!water!watmath!clyde!rutgers!husc6!cmcl2!brl-adm!brl-smoke!gwyn From: gwyn@brl-smoke.ARPA (Doug Gwyn ) Newsgroups: comp.lang.c Subject: Re: What is cfree() ? Message-ID: <7302@brl-smoke.ARPA> Date: 21 Feb 88 11:08:17 GMT References: <6288@iuvax.UUCP> Reply-To: gwyn@brl.arpa (Doug Gwyn (VLD/VMB) ) Organization: Ballistic Research Lab (BRL), APG, MD. Lines: 8 In article <6288@iuvax.UUCP> bobmon@iuvax.UUCP ([bob, mon]) writes: >includes a call to "cfree()" and TurboC doesn't know what this function is. cfree() was supposed to be the way you freed storage allocated by calloc(), until people realized that free() would do the job. Change the invocation of cfree (which may have more than one argument, of which only the pointer is used) to a call to free() instead.