summaryrefslogtreecommitdiff
path: root/lib/libedit/parse.c
diff options
context:
space:
mode:
authorchristos <christos@NetBSD.org>2016-02-16 19:08:41 +0000
committerchristos <christos@NetBSD.org>2016-02-16 19:08:41 +0000
commitb5e29619a6f7e1df11c1e45460f2997609fbb4c2 (patch)
treeb8d640b045582e41d4f9f112cb954acf7f6f9382 /lib/libedit/parse.c
parent932394499362dcdd42d8161c48a7fbdc42bec8d2 (diff)
more include file cleanup (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 1c4bcdf4ab4..1ea8b711ba4 100644
--- a/lib/libedit/parse.c
+++ b/lib/libedit/parse.c
@@ -1,4 +1,4 @@
-/* $NetBSD: parse.c,v 1.32 2016/02/16 15:53:48 christos Exp $ */
+/* $NetBSD: parse.c,v 1.33 2016/02/16 19:08:41 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.32 2016/02/16 15:53:48 christos Exp $");
+__RCSID("$NetBSD: parse.c,v 1.33 2016/02/16 19:08:41 christos Exp $");
#endif
#endif /* not lint && not SCCSID */
@@ -54,9 +54,11 @@ __RCSID("$NetBSD: parse.c,v 1.32 2016/02/16 15:53:48 christos Exp $");
* settc
* setty
*/
-#include "el.h"
#include <stdlib.h>
+#include "el.h"
+#include "parse.h"
+
private const struct {
const Char *name;
int (*func)(EditLine *, int, const Char **);