view CbC-examples/rectypeTest/rectypeTest1.c @ 108:7ad14f446135

add CbC-example/rectypeTest/
author Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
date Thu, 14 Jun 2012 20:30:24 +0900
parents b3cfc7733d3f
children
line wrap: on
line source

#include <stdio.h>
__code print(__rectype *p, int num) {
  printf("num = %d\n",num);
}

__code csA(__rectype *p, int num) {
  goto p(csA,3,4);
  goto p(2,3);
  goto p(csA,3);
  return;
}

void funcA(__code (*p)()){
  goto p(print, 3);
  return;
}

int main() {
  funcA(csA);

  return 0;
}