Module Name: src
Committed By: rmind
Date: Thu Jul 8 20:52:22 UTC 2010
Modified Files:
src/usr.bin/du: du.c
Log Message:
Add #include <sys/param.h>
To generate a diff of this commit:
cvs rdiff -u -r1.33 -r1.34 src/usr.bin/du/du.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/usr.bin/du/du.c
diff -u src/usr.bin/du/du.c:1.33 src/usr.bin/du/du.c:1.34
--- src/usr.bin/du/du.c:1.33 Wed Jul 30 22:03:40 2008
+++ src/usr.bin/du/du.c Thu Jul 8 20:52:22 2010
@@ -1,4 +1,4 @@
-/* $NetBSD: du.c,v 1.33 2008/07/30 22:03:40 dsl Exp $ */
+/* $NetBSD: du.c,v 1.34 2010/07/08 20:52:22 rmind Exp $ */
/*
* Copyright (c) 1989, 1993, 1994
@@ -42,10 +42,11 @@
#if 0
static char sccsid[] = "@(#)du.c 8.5 (Berkeley) 5/4/95";
#else
-__RCSID("$NetBSD: du.c,v 1.33 2008/07/30 22:03:40 dsl Exp $");
+__RCSID("$NetBSD: du.c,v 1.34 2010/07/08 20:52:22 rmind Exp $");
#endif
#endif /* not lint */
+#include <sys/param.h>
#include <sys/types.h>
#include <sys/stat.h>