home *** CD-ROM | disk | FTP | other *** search
- /* C module that will place a call to a procedure defined in */
- /* the Turbo Pascal program that links in this module. */
-
- extern void PasProc (void);
- /* External Pascal procedure that is called by this C module */
-
- void pascal StartUpC (void)
- {
- register int counter;
- for (counter = 1; counter <= 15; counter++ )
- PasProc();
- }
-