home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / alib / d0xx / d079 / m2error.lha / M2Error / geterror.def < prev    next >
Encoding:
Modula Definition  |  1987-06-04  |  355 b   |  19 lines

  1. DEFINITION MODULE GetError;
  2. (*
  3.     This module provides a procedure that returns the
  4.     string corresponding to a particular compiler error
  5.     number. 
  6.     
  7.     Works with V3.00 of TDI/Modula-2 compiler
  8.  
  9.     Created: 3/25/87 by Richie Bielak
  10.     
  11.     Modified:
  12.  
  13. *)
  14.  
  15.    PROCEDURE GetErrString (num : CARDINAL;
  16.                            VAR str : ARRAY OF CHAR);
  17.  
  18. END GetError.
  19.