home *** CD-ROM | disk | FTP | other *** search
Modula Definition | 1987-06-04 | 355 b | 19 lines |
- DEFINITION MODULE GetError;
- (*
- This module provides a procedure that returns the
- string corresponding to a particular compiler error
- number.
-
- Works with V3.00 of TDI/Modula-2 compiler
-
- Created: 3/25/87 by Richie Bielak
-
- Modified:
-
- *)
-
- PROCEDURE GetErrString (num : CARDINAL;
- VAR str : ARRAY OF CHAR);
-
- END GetError.
-