summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjsyn <jsyn@openbsd.org>2003-05-18 01:02:42 +0000
committerjsyn <jsyn@openbsd.org>2003-05-18 01:02:42 +0000
commit29abd7a95e433c913ddf5570a8ef448874e268cc (patch)
tree9b37afdae0c5fc15be99f8d0ef0abb463428ad69
parentlive from the moose bbq (diff)
downloadwireguard-openbsd-29abd7a95e433c913ddf5570a8ef448874e268cc.tar.xz
wireguard-openbsd-29abd7a95e433c913ddf5570a8ef448874e268cc.zip
fix prototype; ok millert@
-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[] */