home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / modu1096.zip / GPMsym / stderror.def < prev    next >
Text File  |  1996-08-29  |  1KB  |  31 lines

  1. (****************************************************************)
  2. (*                                                              *)
  3. (*         Gardens Point Modula-2 Library Definition            *)
  4. (*                                                              *)
  5. (*                                                              *)
  6. (*     (c) Copyright 1996 Faculty of Information Technology     *)
  7. (*              Queensland University of Technology             *)
  8. (*                                                              *)
  9. (*     Permission is granted to use, copy and change this       *)
  10. (*     program as long as the copyright message is left intact  *)
  11. (*                                                              *)
  12. (****************************************************************)
  13.  
  14. FOREIGN DEFINITION MODULE StdError;
  15.    IMPORT IMPLEMENTATION FROM  "stderror.o";
  16.  
  17. (* These procedures are identical to the procedures from module Terminal
  18.  * with the same names, except that output goes to the standard UNIX 
  19.  * error stream "stderr"
  20.  *)
  21.  
  22.   PROCEDURE WriteString(str : ARRAY OF CHAR);
  23.  
  24.   PROCEDURE WriteLn;
  25.  
  26.   PROCEDURE WriteCard(card  : CARDINAL; width : CARDINAL);
  27.  
  28.   PROCEDURE Write(ch : CHAR);
  29.  
  30. END StdError.
  31.