Mercurial > hg > CbC > old > device
changeset 515:3d921f7a8e74
*** empty log message ***
author | kono |
---|---|
date | Mon, 26 Dec 2005 09:18:36 +0900 |
parents | a2047e4555be |
children | bfa4c834a3b8 |
files | test/inline.c |
diffstat | 1 files changed, 8 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/test/inline.c Mon Dec 26 09:18:31 2005 +0900 +++ b/test/inline.c Mon Dec 26 09:18:36 2005 +0900 @@ -150,10 +150,17 @@ fnp3(9,0,2); } +static +inline int order(int a0,int a1,int a2, int a3, int a4) +{ + printf("order %d %d %d %d %d\n",a0,a1,a2,a3,a4); +} + int main(int ac,char *av[]) { fnp = ins1; + order(1,2,3,4,5); a0(5,6); a0(-9,6); fnp3 = in2; @@ -162,3 +169,4 @@ return 0; } +