Initial revision
[AROS-Contrib.git] / development / compilers / freepascal / rtl / aros / printer.pp
blob66493227d7e5adb419bf07fb8c356c43d8aa9860
2 $Id$
3 This file is part of the Free Pascal run time library.
4 Copyright (c) 1999-2000 by Florian Klaempfl
5 member of the Free Pascal development team
7 Printer unit for BP7 compatible RTL
9 See the file COPYING.FPC, included in this distribution,
10 for details about the copyright.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
16 **********************************************************************}
17 unit printer;
18 interface
20 var
21 lst : text;
23 implementation
27 begin
28 assign(lst,'prt:');
29 rewrite(lst);
30 end.
32 $Log :printer.pp,v $