home *** CD-ROM | disk | FTP | other *** search
Modula Implementation | 1991-08-10 | 683 b | 52 lines |
- (*======================================================================*)
- (* NOTE: This same sort of code works with TDI Modula-2, but somehow *)
- (* does not get along with the DBug module. Hence, I have *)
- (* elected to exclude that code unless the compiler is M2Sprint *)
- (*======================================================================*)
-
- IMPLEMENTATION MODULE CtrlC;
-
-
-
-
-
-
-
-
- (* to avoid importing DOS *)
-
-
-
-
-
-
- (* This procedure gets called when CTRL-C *)
- (* is hit, and it activates the halt-handler *)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- (*********************************************************************)
-
-
-
-
-
-
-
- PROCEDURE Check;
- BEGIN
- END Check;
-
- END CtrlC.
-