moved Oberon.Mod to v4_compat directory. -- noch;

Former-commit-id: 2beff88af5
This commit is contained in:
norayr 2015-07-01 15:52:22 +04:00
parent 4d34283a4e
commit d04bc11849
11 changed files with 11 additions and 10 deletions

View file

@ -1,5 +1,5 @@
MODULE Unix; (* Josef Templ, 5.3.90 Linux system calls *)
(* ported to gnu x86_64 and added system function, noch *)
(* ported to gnu x86_64 and added system(), sleep() functions, noch *)
(* Module Unix provides a system call interface to Linux.
Naming conventions:
Procedure and Type-names always start with a capital letter.

View file

@ -56,6 +56,7 @@ MODULE Oberon;
BEGIN
NEW(Par);
NEW(Par.text);
Par.pos := 0;
Texts.Open(Par.text, "");
PopulateParams;
END Oberon.