Module Name: src
Committed By: dholland
Date: Sun Aug 21 21:24:35 UTC 2011
Modified Files:
src/bin/ksh: eval.c
Log Message:
Requires stdint.h.
To generate a diff of this commit:
cvs rdiff -u -r1.13 -r1.14 src/bin/ksh/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/ksh/eval.c
diff -u src/bin/ksh/eval.c:1.13 src/bin/ksh/eval.c:1.14
--- src/bin/ksh/eval.c:1.13 Sun Aug 14 10:40:25 2011
+++ src/bin/ksh/eval.c Sun Aug 21 21:24:34 2011
@@ -1,4 +1,4 @@
-/* $NetBSD: eval.c,v 1.13 2011/08/14 10:40:25 christos Exp $ */
+/* $NetBSD: eval.c,v 1.14 2011/08/21 21:24:34 dholland Exp $ */
/*
* Expansion - quoting, separation, substitution, globbing
@@ -6,12 +6,13 @@
#include <sys/cdefs.h>
#ifndef lint
-__RCSID("$NetBSD: eval.c,v 1.13 2011/08/14 10:40:25 christos Exp $");
+__RCSID("$NetBSD: eval.c,v 1.14 2011/08/21 21:24:34 dholland Exp $");
#endif
+#include <stdint.h>
+#include <pwd.h>
#include "sh.h"
-#include <pwd.h>
#include "ksh_dir.h"
#include "ksh_stat.h"