Add an empty cstdlib.elna source file

This commit is contained in:
2025-08-10 23:43:09 +03:00
parent 87058adcb3
commit d50356cd9d
11 changed files with 157 additions and 213 deletions

14
source/common.elna Normal file
View File

@@ -0,0 +1,14 @@
(* This Source Code Form is subject to the terms of the Mozilla Public License,
v. 2.0. If a copy of the MPL was not distributed with this file, You can
obtain one at https://mozilla.org/MPL/2.0/. *)
module;
type
ShortString = [256]Char;
Identifier = [256]Char;
TextLocation* = record
line: Word;
column: Word
end;
end.