home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 10 / 10.iso / l / l350 / 3.ddi / EXAMPLES / INTHNDLR / CCMAIN.C next >
Encoding:
C/C++ Source or Header  |  1993-02-09  |  192 b   |  14 lines

  1. //
  2. // Main routine for CTRLC.EXE.
  3. // Just calls through to assembly language program in CTRLC.ASM
  4. //
  5. #include <stdio.h>
  6.  
  7. int main()
  8. {
  9.     void asm_main();
  10.  
  11.     asm_main();
  12.     return 0;
  13. }
  14.