view CbC-examples/rectypeTest/rectypeTest1.c @ 120:f93fa5091070

fix conv1.c
author mir3636
date Thu, 08 Mar 2018 14:53:42 +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;
}