home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / pascal / library / dos / sampler / 03 / tpprolog / bridge2.pas < prev    next >
Pascal/Delphi Source File  |  1988-01-15  |  490b  |  25 lines

  1. { Pass the Turbo Prolog 'underscore' procedure names
  2.     onto the correct Turbo Pascal 4.0 procedure name }
  3.  
  4. unit BRIDGE2;
  5.  
  6. { Link in the external (EXTRN) declarations for
  7.   the unit initialization and exit codes }
  8.  
  9.  
  10. interface
  11.   uses CRT;
  12.  
  13.   { One for each Turbo Pascal procedure called}
  14.   procedure ClrScr_0;
  15.  
  16. implementation
  17.  
  18.   { Just pass the call on to the correct Turbo Pascal
  19.       procedure }
  20.   procedure ClrScr_0;
  21.      Begin
  22.        CLRSCR;
  23.      end;
  24.    end.
  25.