summaryrefslogtreecommitdiff
path: root/lib/libedit/parse.c
diff options
context:
space:
mode:
authorchristos <christos@NetBSD.org>2016-02-16 14:06:05 +0000
committerchristos <christos@NetBSD.org>2016-02-16 14:06:05 +0000
commitbe424bf8b740bd3443f2cf214257bfde4d6360c8 (patch)
treef000b712722487602832028e1696902783938109 /lib/libedit/parse.c
parent5755da731bda2d7941f2684d17132c645c0c2646 (diff)
cleanup inclusion of histedit.h (Ingo Schwarze)
Diffstat (limited to 'lib/libedit/parse.c')
-rw-r--r--lib/libedit/parse.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/lib/libedit/parse.c b/lib/libedit/parse.c
index 5058b61869b..012b8e97762 100644
--- a/lib/libedit/parse.c
+++ b/lib/libedit/parse.c
@@ -1,4 +1,4 @@
-/* $NetBSD: parse.c,v 1.29 2016/02/14 14:49:34 christos Exp $ */
+/* $NetBSD: parse.c,v 1.30 2016/02/16 14:06:05 christos Exp $ */
/*-
* Copyright (c) 1992, 1993
@@ -37,7 +37,7 @@
#if 0
static char sccsid[] = "@(#)parse.c 8.1 (Berkeley) 6/4/93";
#else
-__RCSID("$NetBSD: parse.c,v 1.29 2016/02/14 14:49:34 christos Exp $");
+__RCSID("$NetBSD: parse.c,v 1.30 2016/02/16 14:06:05 christos Exp $");
#endif
#endif /* not lint && not SCCSID */
@@ -54,9 +54,11 @@ __RCSID("$NetBSD: parse.c,v 1.29 2016/02/14 14:49:34 christos Exp $");
* settc
* setty
*/
-#include "el.h"
#include <stdlib.h>
+#include "histedit.h"
+#include "el.h"
+
private const struct {
const Char *name;
int (*func)(EditLine *, int, const Char **);