Module Name: src
Committed By: christos
Date: Tue Feb 16 15:54:15 UTC 2016
Modified Files:
src/lib/libedit: sig.c
Log Message:
include errno.h
To generate a diff of this commit:
cvs rdiff -u -r1.22 -r1.23 src/lib/libedit/sig.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/sig.c
diff -u src/lib/libedit/sig.c:1.22 src/lib/libedit/sig.c:1.23
--- src/lib/libedit/sig.c:1.22 Tue Feb 16 10:53:48 2016
+++ src/lib/libedit/sig.c Tue Feb 16 10:54:15 2016
@@ -1,4 +1,4 @@
-/* $NetBSD: sig.c,v 1.22 2016/02/16 15:53:48 christos Exp $ */
+/* $NetBSD: sig.c,v 1.23 2016/02/16 15:54:15 christos Exp $ */
/*-
* Copyright (c) 1992, 1993
@@ -37,7 +37,7 @@
#if 0
static char sccsid[] = "@(#)sig.c 8.1 (Berkeley) 6/4/93";
#else
-__RCSID("$NetBSD: sig.c,v 1.22 2016/02/16 15:53:48 christos Exp $");
+__RCSID("$NetBSD: sig.c,v 1.23 2016/02/16 15:54:15 christos Exp $");
#endif
#endif /* not lint && not SCCSID */
@@ -48,6 +48,7 @@ __RCSID("$NetBSD: sig.c,v 1.22 2016/02/1
*/
#include "el.h"
#include <stdlib.h>
+#include <errno.h>
private EditLine *sel = NULL;