Module Name:    src
Committed By:   christos
Date:           Thu Jun  3 16:14:13 UTC 2010

Modified Files:
        src/bin/sh: eval.c

Log Message:
need errno for the debug build.


To generate a diff of this commit:
cvs rdiff -u -r1.99 -r1.100 src/bin/sh/eval.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/bin/sh/eval.c
diff -u src/bin/sh/eval.c:1.99 src/bin/sh/eval.c:1.100
--- src/bin/sh/eval.c:1.99	Thu Jun  3 12:06:48 2010
+++ src/bin/sh/eval.c	Thu Jun  3 12:14:13 2010
@@ -1,4 +1,4 @@
-/*	$NetBSD: eval.c,v 1.99 2010/06/03 16:06:48 christos Exp $	*/
+/*	$NetBSD: eval.c,v 1.100 2010/06/03 16:14:13 christos Exp $	*/
 
 /*-
  * Copyright (c) 1993
@@ -37,7 +37,7 @@
 #if 0
 static char sccsid[] = "@(#)eval.c	8.9 (Berkeley) 6/8/95";
 #else
-__RCSID("$NetBSD: eval.c,v 1.99 2010/06/03 16:06:48 christos Exp $");
+__RCSID("$NetBSD: eval.c,v 1.100 2010/06/03 16:14:13 christos Exp $");
 #endif
 #endif /* not lint */
 
@@ -45,6 +45,7 @@
 #include <stdlib.h>
 #include <signal.h>
 #include <stdio.h>
+#include <errno.h>
 #include <unistd.h>
 #include <sys/fcntl.h>
 #include <sys/times.h>

Reply via email to