home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fresh Fish 8
/
FreshFishVol8-CD2.bin
/
bbs
/
dev
/
oberon-a-1.4ß.lha
/
Oberon-A
/
source
/
Misc
/
Skeleton.mod
< prev
next >
Wrap
Text File
|
1994-06-07
|
1KB
|
53 lines
(*************************************************************************
$RCSfile$
Description:
Created by: fjc (Frank Copeland)
$Revision$
$Author$
$Date$
Log entries are at the end of the file.
*************************************************************************)
MODULE Skeleton;
IMPORT SYS := SYSTEM;
VAR
OldCleanup : PROCEDURE (rc : LONGINT);
(*------------------------------------*)
PROCEDURE* Cleanup (rc : LONGINT);
BEGIN (* Cleanup *)
IF OldCleanup # NIL THEN OldCleanup (rc) END
END Cleanup;
(*------------------------------------*)
PROCEDURE Init ();
BEGIN (* Init *)
OldCleanup := NIL;
SYS.SETCLEANUP (Cleanup, OldCleanup);
END Init;
(*------------------------------------*)
PROCEDURE Main ();
BEGIN (* Main *)
END Main;
BEGIN (* Skeleton *)
Init ();
Main ();
END Skeleton.
(*************************************************************************
$Log$
*************************************************************************)