summaryrefslogtreecommitdiff
path: root/lib/libedit/parse.c
diff options
context:
space:
mode:
authorjdolecek <jdolecek@NetBSD.org>2000-03-10 12:25:47 +0000
committerjdolecek <jdolecek@NetBSD.org>2000-03-10 12:25:47 +0000
commit1f0ecc5ce4719d38abebdc5a434a1cc8db8fc100 (patch)
tree435d7a22ef1508104591d16ba8f8e0dd41a9698b /lib/libedit/parse.c
parentd2fc7332ae5d25190226d8be8c62e165aaee8302 (diff)
include <stdlib.h> to get definition of malloc() and free(), so it's
possible to compile this file separately when debugging
Diffstat (limited to 'lib/libedit/parse.c')
-rw-r--r--lib/libedit/parse.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/libedit/parse.c b/lib/libedit/parse.c
index 3bc89475cb2..014d2f2900d 100644
--- a/lib/libedit/parse.c
+++ b/lib/libedit/parse.c
@@ -1,4 +1,4 @@
-/* $NetBSD: parse.c,v 1.11 1999/07/02 15:21:26 simonb Exp $ */
+/* $NetBSD: parse.c,v 1.12 2000/03/10 12:25:47 jdolecek Exp $ */
/*-
* Copyright (c) 1992, 1993
@@ -41,7 +41,7 @@
#if 0
static char sccsid[] = "@(#)parse.c 8.1 (Berkeley) 6/4/93";
#else
-__RCSID("$NetBSD: parse.c,v 1.11 1999/07/02 15:21:26 simonb Exp $");
+__RCSID("$NetBSD: parse.c,v 1.12 2000/03/10 12:25:47 jdolecek Exp $");
#endif
#endif /* not lint && not SCCSID */
@@ -61,6 +61,7 @@ __RCSID("$NetBSD: parse.c,v 1.11 1999/07/02 15:21:26 simonb Exp $");
#include "sys.h"
#include "el.h"
#include "tokenizer.h"
+#include <stdlib.h>
private struct {
char *name;