summaryrefslogtreecommitdiff
path: root/lib/libedit/eln.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libedit/eln.c')
-rw-r--r--lib/libedit/eln.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/lib/libedit/eln.c b/lib/libedit/eln.c
index 0af820a7dfb..e7538e8ee52 100644
--- a/lib/libedit/eln.c
+++ b/lib/libedit/eln.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: eln.c,v 1.17 2016/04/11 20:43:33 schwarze Exp $ */
+/* $OpenBSD: eln.c,v 1.18 2016/04/11 21:17:29 schwarze Exp $ */
/* $NetBSD: eln.c,v 1.9 2010/11/04 13:53:12 christos Exp $ */
/*-
@@ -35,7 +35,7 @@
#include "el.h"
-public int
+int
el_getc(EditLine *el, char *cp)
{
int num_read;
@@ -56,7 +56,7 @@ el_getc(EditLine *el, char *cp)
}
-public void
+void
el_push(EditLine *el, const char *str)
{
/* Using multibyte->wide string decoding works fine under single-byte
@@ -65,7 +65,7 @@ el_push(EditLine *el, const char *str)
}
-public const char *
+const char *
el_gets(EditLine *el, int *nread)
{
const wchar_t *tmp;
@@ -92,7 +92,7 @@ el_gets(EditLine *el, int *nread)
}
-public int
+int
el_parse(EditLine *el, int argc, const char *argv[])
{
int ret;
@@ -109,7 +109,7 @@ el_parse(EditLine *el, int argc, const char *argv[])
}
-public int
+int
el_set(EditLine *el, int op, ...)
{
va_list ap;
@@ -259,7 +259,7 @@ out:
}
-public int
+int
el_get(EditLine *el, int op, ...)
{
va_list ap;