diff options
Diffstat (limited to 'awklib/eg/prog/wc.awk')
-rw-r--r-- | awklib/eg/prog/wc.awk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/awklib/eg/prog/wc.awk b/awklib/eg/prog/wc.awk index d51b9ff2..95940ae4 100644 --- a/awklib/eg/prog/wc.awk +++ b/awklib/eg/prog/wc.awk @@ -10,10 +10,10 @@ # # Default is to count lines, words, characters # -# Requires getopt and file transition library functions +# Requires getopt() and file transition library functions BEGIN { - # let getopt print a message about + # let getopt() print a message about # invalid options. we ignore them while ((c = getopt(ARGC, ARGV, "lwc")) != -1) { if (c == "l") |