aboutsummaryrefslogtreecommitdiffstats
path: root/ext.c
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 /ext.c
parent14d958c82b939d26ad37ab0c0debfedf780404d0 (diff)
downloadegawk-9a1809359241c38d2814e287d302a346e85c6ec4.tar.gz
egawk-9a1809359241c38d2814e287d302a346e85c6ec4.tar.bz2
egawk-9a1809359241c38d2814e287d302a346e85c6ec4.zip
Remove useless "optional" argument to get_actual_argument.
Diffstat (limited to 'ext.c')
-rw-r--r--ext.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext.c b/ext.c
index c3e34b1c..0e6da3d3 100644
--- a/ext.c
+++ b/ext.c
@@ -330,11 +330,11 @@ get_argument(int i)
/*
* get_actual_argument --- get the i'th scalar or array argument of a
- * dynamically linked function, allowed to be optional.
+ * dynamically linked function.
*/
NODE *
-get_actual_argument(NODE *t, int i, bool optional, bool want_array)
+get_actual_argument(NODE *t, int i, bool want_array)
{
char *fname;
INSTRUCTION *pc;