Robert P. J. Day wrote: > what is the proper usage of inline functions? would you first > declare it inline in a header file, and also define it inline in the > corresponding source file? (yes, i know the compiler is under no > obligation to inline them ... i just want to know the canonical way to > use them.)
You have to define them (as "static inline") in the header file. -- Glynn Clements <[EMAIL PROTECTED]> - To unsubscribe from this list: send the line "unsubscribe linux-c-programming" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html
