Module Name: src
Committed By: dholland
Date: Sun Aug 26 09:34:43 UTC 2012
Modified Files:
src/sbin/fsck_ffs: quota2.c
Log Message:
stdlib.h, not malloc.h
To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/sbin/fsck_ffs/quota2.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/quota2.c
diff -u src/sbin/fsck_ffs/quota2.c:1.5 src/sbin/fsck_ffs/quota2.c:1.6
--- src/sbin/fsck_ffs/quota2.c:1.5 Tue Mar 20 18:50:31 2012
+++ src/sbin/fsck_ffs/quota2.c Sun Aug 26 09:34:42 2012
@@ -1,4 +1,4 @@
-/* $NetBSD: quota2.c,v 1.5 2012/03/20 18:50:31 matt Exp $ */
+/* $NetBSD: quota2.c,v 1.6 2012/08/26 09:34:42 dholland Exp $ */
/*-
* Copyright (c) 2010 Manuel Bouyer
* All rights reserved.
@@ -35,7 +35,7 @@
#include <err.h>
#include <string.h>
-#include <malloc.h>
+#include <stdlib.h>
#include <ufs/ufs/quota2.h>
#include "fsutil.h"