summaryrefslogtreecommitdiff
path: root/ipl/packs/tcll1/rptperr.icn
diff options
context:
space:
mode:
Diffstat (limited to 'ipl/packs/tcll1/rptperr.icn')
-rw-r--r--ipl/packs/tcll1/rptperr.icn12
1 files changed, 12 insertions, 0 deletions
diff --git a/ipl/packs/tcll1/rptperr.icn b/ipl/packs/tcll1/rptperr.icn
new file mode 100644
index 0000000..316388b
--- /dev/null
+++ b/ipl/packs/tcll1/rptperr.icn
@@ -0,0 +1,12 @@
+#
+# this is a minimal version of the error reporting procedure
+# needed by the parser
+#
+
+procedure reportParseError(t)
+write(&errout,"error: unexpected input ",t.body,
+ " at line ",t.line," column ",t.column)
+return
+end
+
+