src/runtime/Files.Mod: Now using SYSTEM.MAXPATHLEN + 1 as size for the array-

type 'FileName' ...
bootstrap/*/*.[ch]: Committing the bootstrapping files after the modifications
    on the compiler and the runtime ...
This commit is contained in:
runkharr 2018-04-13 03:44:48 +02:00
parent 60df39cb6b
commit 8675fbf5f4
186 changed files with 531 additions and 446 deletions

View file

@ -29,7 +29,7 @@ MODULE Files; (* J. Templ 1.12. 89/12.4.95 Oberon files mapped onto Unix files
name *)
TYPE
FileName = ARRAY 256 OF CHAR;
FileName = ARRAY SYSTEM.MAXPATHLEN + 1 OF CHAR;
File* = POINTER TO FileDesc;
Buffer = POINTER TO BufDesc;