view sources/fastcall-example.c @ 2:50e23a4b2f40

add many files.
author kent <kent@cr.ie.u-ryukyu.ac.jp>
date Fri, 05 Feb 2010 10:00:05 +0900
parents
children 8ef81ff8cb52
line wrap: on
line source

int funcB() __attribute__((fastcall));

int funcB(int a, int b) {
    /* do something.   */
}

void funcA() {
    funcB(20, 30);
}