Module Name:    src
Committed By:   rmind
Date:           Thu Jul  8 20:43:34 UTC 2010

Modified Files:
        src/bin/ls: ls.c

Log Message:
Add #include <sys/param.h> for howmany().


To generate a diff of this commit:
cvs rdiff -u -r1.66 -r1.67 src/bin/ls/ls.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/ls/ls.c
diff -u src/bin/ls/ls.c:1.66 src/bin/ls/ls.c:1.67
--- src/bin/ls/ls.c:1.66	Sat Feb 14 08:02:04 2009
+++ src/bin/ls/ls.c	Thu Jul  8 20:43:34 2010
@@ -1,4 +1,4 @@
-/*	$NetBSD: ls.c,v 1.66 2009/02/14 08:02:04 lukem Exp $	*/
+/*	$NetBSD: ls.c,v 1.67 2010/07/08 20:43:34 rmind Exp $	*/
 
 /*
  * Copyright (c) 1989, 1993, 1994
@@ -42,10 +42,11 @@
 #if 0
 static char sccsid[] = "@(#)ls.c	8.7 (Berkeley) 8/5/94";
 #else
-__RCSID("$NetBSD: ls.c,v 1.66 2009/02/14 08:02:04 lukem Exp $");
+__RCSID("$NetBSD: ls.c,v 1.67 2010/07/08 20:43:34 rmind Exp $");
 #endif
 #endif /* not lint */
 
+#include <sys/param.h>
 #include <sys/types.h>
 #include <sys/stat.h>
 #include <sys/ioctl.h>

Reply via email to