Module Name: src
Committed By: dsl
Date: Wed Jan 2 22:28:42 UTC 2013
Modified Files:
src/bin/sh: eval.c
Log Message:
include limits.h for CHAR_MIN
To generate a diff of this commit:
cvs rdiff -u -r1.104 -r1.105 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.104 src/bin/sh/eval.c:1.105
--- src/bin/sh/eval.c:1.104 Thu Jun 14 18:56:54 2012
+++ src/bin/sh/eval.c Wed Jan 2 22:28:42 2013
@@ -1,4 +1,4 @@
-/* $NetBSD: eval.c,v 1.104 2012/06/14 18:56:54 joerg Exp $ */
+/* $NetBSD: eval.c,v 1.105 2013/01/02 22:28:42 dsl 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.104 2012/06/14 18:56:54 joerg Exp $");
+__RCSID("$NetBSD: eval.c,v 1.105 2013/01/02 22:28:42 dsl Exp $");
#endif
#endif /* not lint */
@@ -46,6 +46,7 @@ __RCSID("$NetBSD: eval.c,v 1.104 2012/06
#include <signal.h>
#include <stdio.h>
#include <errno.h>
+#include <limits.h>
#include <unistd.h>
#include <sys/fcntl.h>
#include <sys/times.h>