]> git.cameronkatri.com Git - pw-darwin.git/commitdiff
Move hasquota() function to libutil.
authorKirk McKusick <mckusick@FreeBSD.org>
Fri, 13 Feb 2009 06:12:15 +0000 (06:12 +0000)
committerKirk McKusick <mckusick@FreeBSD.org>
Fri, 13 Feb 2009 06:12:15 +0000 (06:12 +0000)
libutil/libutil.h

index 48ab2188c358ec2fadb2aba9654fa3e10cfc1ffb..7796de0ac7881c570ce050834d56270f78421cbf 100644 (file)
@@ -142,11 +142,13 @@ int pidfile_remove(struct pidfh *pfh);
 
 #ifdef _UFS_UFS_QUOTA_H_
 struct quotafile;
+struct fstab;
 struct quotafile *quota_open(const char *);
 struct quotafile *quota_create(const char *);
 void quota_close(struct quotafile *);
 int quota_read(struct quotafile *, struct dqblk *, int);
 int quota_write(struct quotafile *, const struct dqblk *, int);
+int hasquota(struct fstab *, int, char **);
 #endif
 
 __END_DECLS