|
From: Bryan O'S. <bo...@se...> - 2005-03-15 21:45:29
|
On Tue, 2005-03-15 at 20:32 +0000, Julian Seward wrote: > If gcc inlines malloc etc it makes V pretty much useless, but I'm sure > large pressure would be bought to bear on the gcc folks from the community > at large if that happened. Not all builtins are actually inlined, malloc being among those that aren't. Many of them are present just so that gcc will always add special attributes to them (e.g. the printf family), even if they get redefined by users instead of #included via standard headers that already have the right attributes set. <b |