From 23b6f074c7f560d701e9a1fa5713a965af3a18a3 Mon Sep 17 00:00:00 2001 From: Eugen Wissner Date: Tue, 2 Dec 2025 10:22:06 +0100 Subject: Merge GCC frontend into the branch --- source/Common.def | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 source/Common.def (limited to 'source/Common.def') diff --git a/source/Common.def b/source/Common.def new file mode 100644 index 0000000..9520230 --- /dev/null +++ b/source/Common.def @@ -0,0 +1,12 @@ +DEFINITION MODULE Common; + +TYPE + ShortString = ARRAY[1..256] OF CHAR; + Identifier = ARRAY[1..256] OF CHAR; + PIdentifier = POINTER TO Identifier; + TextLocation = RECORD + line: CARDINAL; + column: CARDINAL + END; + +END Common. -- cgit v1.2.3