aboutsummaryrefslogtreecommitdiffstats
path: root/awk.h
diff options
context:
space:
mode:
authorAndrew J. Schorr <aschorr@telemetry-investments.com>2016-05-26 21:57:11 -0400
committerAndrew J. Schorr <aschorr@telemetry-investments.com>2016-05-26 21:57:11 -0400
commit9a1809359241c38d2814e287d302a346e85c6ec4 (patch)
tree6b5cff306861eb7ce6ef23ec53429b45843f854e /awk.h
parent14d958c82b939d26ad37ab0c0debfedf780404d0 (diff)
downloadegawk-9a1809359241c38d2814e287d302a346e85c6ec4.tar.gz
egawk-9a1809359241c38d2814e287d302a346e85c6ec4.tar.bz2
egawk-9a1809359241c38d2814e287d302a346e85c6ec4.zip
Remove useless "optional" argument to get_actual_argument.
Diffstat (limited to 'awk.h')
-rw-r--r--awk.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/awk.h b/awk.h
index 8f3b1d48..7323b6ca 100644
--- a/awk.h
+++ b/awk.h
@@ -1441,9 +1441,9 @@ extern void close_extensions(void);
extern void make_old_builtin(const char *, NODE *(*)(int), int);
extern awk_bool_t make_builtin(const awk_ext_func_t *);
extern NODE *get_argument(int);
-extern NODE *get_actual_argument(NODE *, int, bool, bool);
-#define get_scalar_argument(n, i, opt) get_actual_argument((n), (i), (opt), false)
-#define get_array_argument(n, i, opt) get_actual_argument((n), (i), (opt), true)
+extern NODE *get_actual_argument(NODE *, int, bool);
+#define get_scalar_argument(n, i) get_actual_argument((n), (i), false)
+#define get_array_argument(n, i) get_actual_argument((n), (i), true)
#endif
/* field.c */
extern void init_fields(void);