Module Name: src
Committed By: christos
Date: Wed Jun 18 18:52:49 UTC 2014
Modified Files:
src/lib/libedit: tty.c
Log Message:
Add stdlib.h for abort() (Jess Thrysoee)
To generate a diff of this commit:
cvs rdiff -u -r1.45 -r1.46 src/lib/libedit/tty.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/lib/libedit/tty.c
diff -u src/lib/libedit/tty.c:1.45 src/lib/libedit/tty.c:1.46
--- src/lib/libedit/tty.c:1.45 Mon May 19 17:01:48 2014
+++ src/lib/libedit/tty.c Wed Jun 18 14:52:49 2014
@@ -1,4 +1,4 @@
-/* $NetBSD: tty.c,v 1.45 2014/05/19 21:01:48 christos Exp $ */
+/* $NetBSD: tty.c,v 1.46 2014/06/18 18:52:49 christos Exp $ */
/*-
* Copyright (c) 1992, 1993
@@ -37,7 +37,7 @@
#if 0
static char sccsid[] = "@(#)tty.c 8.1 (Berkeley) 6/4/93";
#else
-__RCSID("$NetBSD: tty.c,v 1.45 2014/05/19 21:01:48 christos Exp $");
+__RCSID("$NetBSD: tty.c,v 1.46 2014/06/18 18:52:49 christos Exp $");
#endif
#endif /* not lint && not SCCSID */
@@ -48,6 +48,7 @@ __RCSID("$NetBSD: tty.c,v 1.45 2014/05/1
#include <errno.h>
#include <unistd.h> /* for isatty */
#include <strings.h> /* for ffs */
+#include <stdlib.h> /* for abort */
#include "el.h"
#include "tty.h"