From: Richard Kenner Date: Sun, 22 Sep 1996 14:35:09 +0000 (-0400) Subject: Replace use of free with objc_free. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9d46282b6cde36acb5b40a9d8c60a530de0e1328;p=gcc.git Replace use of free with objc_free. From-SVN: r12762 --- diff --git a/gcc/objc/init.c b/gcc/objc/init.c index a7229d50f9d..902d2245de4 100644 --- a/gcc/objc/init.c +++ b/gcc/objc/init.c @@ -117,7 +117,7 @@ objc_init_statics () /* Remove this module from the uninitialized list. */ struct objc_list *this = *cell; *cell = this->tail; - free (this); + objc_free(this); } else cell = &(*cell)->tail;