Module Name: src
Committed By: dholland
Date: Sun Aug 26 09:33:19 UTC 2012
Modified Files:
src/sbin/fsck_ext2fs: pass5.c
Log Message:
stdlib.h, not malloc.h
To generate a diff of this commit:
cvs rdiff -u -r1.19 -r1.20 src/sbin/fsck_ext2fs/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_ext2fs/pass5.c
diff -u src/sbin/fsck_ext2fs/pass5.c:1.19 src/sbin/fsck_ext2fs/pass5.c:1.20
--- src/sbin/fsck_ext2fs/pass5.c:1.19 Sat Aug 6 16:42:41 2011
+++ src/sbin/fsck_ext2fs/pass5.c Sun Aug 26 09:33:18 2012
@@ -1,4 +1,4 @@
-/* $NetBSD: pass5.c,v 1.19 2011/08/06 16:42:41 dholland Exp $ */
+/* $NetBSD: pass5.c,v 1.20 2012/08/26 09:33:18 dholland Exp $ */
/*
* Copyright (c) 1980, 1986, 1993
@@ -58,7 +58,7 @@
#if 0
static char sccsid[] = "@(#)pass5.c 8.6 (Berkeley) 11/30/94";
#else
-__RCSID("$NetBSD: pass5.c,v 1.19 2011/08/06 16:42:41 dholland Exp $");
+__RCSID("$NetBSD: pass5.c,v 1.20 2012/08/26 09:33:18 dholland Exp $");
#endif
#endif /* not lint */
@@ -69,7 +69,7 @@ __RCSID("$NetBSD: pass5.c,v 1.19 2011/08
#include <ufs/ext2fs/ext2fs.h>
#include <inttypes.h>
#include <string.h>
-#include <malloc.h>
+#include <stdlib.h>
#include <stdio.h>
#include "fsutil.h"