summaryrefslogtreecommitdiff
path: root/test/inclib.awk
diff options
context:
space:
mode:
Diffstat (limited to 'test/inclib.awk')
-rw-r--r--test/inclib.awk7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/inclib.awk b/test/inclib.awk
new file mode 100644
index 00000000..51785283
--- /dev/null
+++ b/test/inclib.awk
@@ -0,0 +1,7 @@
+BEGIN {
+ print "Include library loaded."
+}
+
+function sandwich(pfx,x,sfx) {
+ return (pfx x sfx)
+}