Module Name:    src
Committed By:   christos
Date:           Tue Feb 16 14:04:58 UTC 2016

Modified Files:
        src/lib/libedit: sig.c

Log Message:
include explicitly errno.h since we use it.


To generate a diff of this commit:
cvs rdiff -u -r1.18 -r1.19 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.18 src/lib/libedit/sig.c:1.19
--- src/lib/libedit/sig.c:1.18	Mon Feb 15 10:29:25 2016
+++ src/lib/libedit/sig.c	Tue Feb 16 09:04:58 2016
@@ -1,4 +1,4 @@
-/*	$NetBSD: sig.c,v 1.18 2016/02/15 15:29:25 christos Exp $	*/
+/*	$NetBSD: sig.c,v 1.19 2016/02/16 14:04:58 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.18 2016/02/15 15:29:25 christos Exp $");
+__RCSID("$NetBSD: sig.c,v 1.19 2016/02/16 14:04:58 christos Exp $");
 #endif
 #endif /* not lint && not SCCSID */
 
@@ -47,6 +47,7 @@ __RCSID("$NetBSD: sig.c,v 1.18 2016/02/1
  *	  and pass the ball to our caller.
  */
 #include "el.h"
+#include <errno.h>
 #include <stdlib.h>
 
 private EditLine *sel = NULL;

Reply via email to