{$mode objfpc}{$H+} library prtSalaryLib; procedure prtSalary( salary : integer ); cdecl; forward; exports prtSalary; // **************************************************************************** procedure prtSalary( salary : integer ); cdecl; begin writeln('@prtSalary. Salary: ', salary); end; //prtSalary end.