Module Name: src
Committed By: dholland
Date: Sun Aug 26 09:33:42 UTC 2012
Modified Files:
src/sbin/fsck_ffs: pass5.c
Log Message:
stdlib.h, not malloc.h
To generate a diff of this commit:
cvs rdiff -u -r1.49 -r1.50 src/sbin/fsck_ffs/pass5.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sbin/fsck_ffs/pass5.c
diff -u src/sbin/fsck_ffs/pass5.c:1.49 src/sbin/fsck_ffs/pass5.c:1.50
--- src/sbin/fsck_ffs/pass5.c:1.49 Sun Aug 14 12:32:01 2011
+++ src/sbin/fsck_ffs/pass5.c Sun Aug 26 09:33:42 2012
@@ -1,4 +1,4 @@
-/* $NetBSD: pass5.c,v 1.49 2011/08/14 12:32:01 christos Exp $ */
+/* $NetBSD: pass5.c,v 1.50 2012/08/26 09:33:42 dholland Exp $ */
/*
* Copyright (c) 1980, 1986, 1993
@@ -34,7 +34,7 @@
#if 0
static char sccsid[] = "@(#)pass5.c 8.9 (Berkeley) 4/28/95";
#else
-__RCSID("$NetBSD: pass5.c,v 1.49 2011/08/14 12:32:01 christos Exp $");
+__RCSID("$NetBSD: pass5.c,v 1.50 2012/08/26 09:33:42 dholland Exp $");
#endif
#endif /* not lint */
@@ -48,7 +48,7 @@ __RCSID("$NetBSD: pass5.c,v 1.49 2011/08
#include <err.h>
#include <string.h>
-#include <malloc.h>
+#include <stdlib.h>
#include "fsutil.h"
#include "fsck.h"