summaryrefslogtreecommitdiff
path: root/source3/aparser/util.awk
diff options
context:
space:
mode:
Diffstat (limited to 'source3/aparser/util.awk')
-rw-r--r--source3/aparser/util.awk39
1 files changed, 0 insertions, 39 deletions
diff --git a/source3/aparser/util.awk b/source3/aparser/util.awk
deleted file mode 100644
index 6c5594da68..0000000000
--- a/source3/aparser/util.awk
+++ /dev/null
@@ -1,39 +0,0 @@
-function isaptr(elem)
-{
- if (substr(elem, 1, 1) == "*") {
- return 1;
- }
- return 0;
-}
-
-function noptr(elem)
-{
- if (!isaptr(elem)) return elem;
- return substr(elem, 2);
-}
-
-function xprintf(f, fmt, v1, v2, v3, v4, v5, v6, v7)
-{
- printf(fmt, v1, v2, v3, v4, v5, v6) > f;
-}
-
-function fatal(why)
-{
- printf("FATAL: %s\n", why);
- exit 1;
-}
-
-function numlines(fname,
- LOCAL, line, count)
-{
- count=0;
- while ((getline line < fname) > 0) count++;
- close(fname);
- return count;
-}
-
-# return 1 if the string is a constant
-function is_constant(s)
-{
- return match(s,"^[0-9]+$");
-}