Module Name: src
Committed By: christos
Date: Sun Apr 18 21:17:22 UTC 2010
Modified Files:
src/lib/libedit: tty.c
Log Message:
ffs needs strings.h
To generate a diff of this commit:
cvs rdiff -u -r1.32 -r1.33 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.32 src/lib/libedit/tty.c:1.33
--- src/lib/libedit/tty.c:1.32 Wed Dec 30 17:37:40 2009
+++ src/lib/libedit/tty.c Sun Apr 18 17:17:22 2010
@@ -1,4 +1,4 @@
-/* $NetBSD: tty.c,v 1.32 2009/12/30 22:37:40 christos Exp $ */
+/* $NetBSD: tty.c,v 1.33 2010/04/18 21:17:22 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.32 2009/12/30 22:37:40 christos Exp $");
+__RCSID("$NetBSD: tty.c,v 1.33 2010/04/18 21:17:22 christos Exp $");
#endif
#endif /* not lint && not SCCSID */
@@ -46,6 +46,7 @@
*/
#include <assert.h>
#include <errno.h>
+#include <strings.h> /* for ffs */
#include "el.h"
#include "tty.h"