[Subject Prev][Subject Next][Thread Prev][Thread Next][Subject Index][Thread Index]

Re: C doubts



On Sat, Aug 26, 2000 at 11:06:50AM +0530, Atul Mehta wrote:
> Hi all,
> 	I have a doubt in C.. Reading the kernel sources u find manu
> functions prefixed by an "inline" .. What exactly does inline mean? 

Instead of a "call" instruction, the instructions comprising the function
will be placed in the caller's body.

	-Arun