summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorJason Peel <jsyn@cvs.openbsd.org>2003-05-18 01:02:43 +0000
committerJason Peel <jsyn@cvs.openbsd.org>2003-05-18 01:02:43 +0000
commita869abc4ebee0dc2b6f42d0bf3c763101b272764 (patch)
tree99e26cd8a0b7d902c4ee5ee6291c4ea87ae258ea /bin
parentfce35dbe624e6fed59d85e2e9d26dd76b162f140 (diff)
fix prototype; ok millert@
Diffstat (limited to 'bin')
-rw-r--r--bin/ksh/history.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/ksh/history.c b/bin/ksh/history.c
index 3bac162b906..a3737c41c23 100644
--- a/bin/ksh/history.c
+++ b/bin/ksh/history.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: history.c,v 1.21 2003/05/17 00:10:52 fgsch Exp $ */
+/* $OpenBSD: history.c,v 1.22 2003/05/18 01:02:42 jsyn Exp $ */
/*
* command history
@@ -64,7 +64,7 @@ static int hist_replace ARGS((char **hp, const char *pat, const char *rep,
int global));
static char **hist_get ARGS((const char *str, int approx, int allow_cur));
static char **hist_get_newest ARGS((int allow_cur));
-static char **hist_get_oldest ARGS(());
+static char **hist_get_oldest ARGS((void));
static void histbackup ARGS((void));
static char **current; /* current position in history[] */