aboutsummaryrefslogtreecommitdiffstats
path: root/awklib/eg/prog/uniq.awk
diff options
context:
space:
mode:
authorAndrew J. Schorr <aschorr@telemetry-investments.com>2014-11-03 14:40:38 -0500
committerAndrew J. Schorr <aschorr@telemetry-investments.com>2014-11-03 14:40:38 -0500
commit6a9d48365f5044b64a6c270760808d17d475ca4b (patch)
treed612b2410fe9af333a79e524f5e5102f9754feed /awklib/eg/prog/uniq.awk
parentb4d06df669e1eaf6c98cacb5c5f299bb5324e804 (diff)
parent204bec7af64c61489e37007d45de936482007977 (diff)
downloadegawk-6a9d48365f5044b64a6c270760808d17d475ca4b.tar.gz
egawk-6a9d48365f5044b64a6c270760808d17d475ca4b.tar.bz2
egawk-6a9d48365f5044b64a6c270760808d17d475ca4b.zip
Merge remote-tracking branch 'origin/master' into select
Diffstat (limited to 'awklib/eg/prog/uniq.awk')
-rw-r--r--awklib/eg/prog/uniq.awk5
1 files changed, 2 insertions, 3 deletions
diff --git a/awklib/eg/prog/uniq.awk b/awklib/eg/prog/uniq.awk
index 2a2cf63e..7dd16099 100644
--- a/awklib/eg/prog/uniq.awk
+++ b/awklib/eg/prog/uniq.awk
@@ -5,10 +5,9 @@
# Arnold Robbins, arnold@skeeve.com, Public Domain
# May 1993
-function usage( e)
+function usage()
{
- e = "Usage: uniq [-udc [-n]] [+n] [ in [ out ]]"
- print e > "/dev/stderr"
+ print("Usage: uniq [-udc [-n]] [+n] [ in [ out ]]") > "/dev/stderr"
exit 1
}