示例#1
0
void Routine::start() {
  init();
  setup();
  while (1) {
    performLoop();
  }
}
void main()
{
	if (fp = fopen("fcall_results.txt", "w"))
	{
		fclose(fp);
		performLoop();
	}
	else
		printf("Error opening fcall_results.txt \n");
}