printer.pp 707 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. $Id$
  3. This file is part of the Free Pascal run time library.
  4. Copyright (c) 1993,98 by Florian Klaempfl
  5. member of the Free Pascal development team
  6. Printer unit for BP7 compatible RTL
  7. See the file COPYING.FPC, included in this distribution,
  8. for details about the copyright.
  9. This program is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  12. **********************************************************************}
  13. unit printer;
  14. interface
  15. var
  16. lst : text;
  17. implementation
  18. begin
  19. assign(lst,'prt:');
  20. rewrite(lst);
  21. end.
  22. {
  23. $Log :printer.pp,v $
  24. }