home *** CD-ROM | disk | FTP | other *** search
/ Media Share 9 / MEDIASHARE_09.ISO / pascal / lzw4p12.zip / DUMMY_IO.PAS < prev    next >
Pascal/Delphi Source File  |  1993-02-25  |  189b  |  15 lines

  1. unit DUMMY_IO;
  2.  
  3. interface
  4.  
  5. function Dummy(TheByte : Byte) : Integer;
  6.  
  7. implementation
  8.  
  9. function Dummy(TheByte : Byte) : Integer;
  10. begin
  11.   (* into the bit bucket *)
  12. end;
  13.  
  14. end.
  15.