Hi Ho! --- On Mon, 6/30/08, "Itay Yatsiv" <iyatsiv@xxxxxxxxxxxx> wrote: > Hello, > > I'm using GNU GCC compiler 3.4.4 and I have 2 questions: > > 1. How to enable inline functions? (I used -finline-functions but it for all > suitable functions and not for those declared as inline ?) Use __always_inline like the following example: __always_inline int my_inline_function(int a, int b) { return a + b; } > 2. How to turn trigraph conversion off? (not turning the warning off - but > the conversion) Well, I don't know. Anyone on GCC Help Mailing List knows something about this? > Thanks, Your welcome. > Itay Best regards, Eus