[Psi-devel] Re: Re: Re: Tab fixes
Remko Troncon
remko at psi-im.org
Wed Jun 29 05:41:36 PDT 2005
> I wouldn't be that sure.
Believe me, i wouldn't say such a thing if i wasn't sure ;-)
test1.c:
#include <stdlib.h>
int foo(int x)
{
x += 1;
return abs(x);
}
test2.c:
int foo(int x)
{
x += 1;
return (x > 0 ? x : -x);
}
Compile both with gcc -S test?.c. You'll get 2 identical files. And the linker
didn't even come into play here.
cheers,
Remko
More information about the Psi-devel-affinix.com
mailing list