]> git.ipfire.org Git - thirdparty/xfsprogs-dev.git/blame - quota/darwin.c
xfsprogs: remove bsd platform files
[thirdparty/xfsprogs-dev.git] / quota / darwin.c
CommitLineData
959ef981 1// SPDX-License-Identifier: GPL-2.0
5aead01d 2/*
da23017d
NS
3 * Copyright (c) 2005 Silicon Graphics, Inc.
4 * All Rights Reserved.
5aead01d
NS
5 */
6
7#include "quota.h"
8#include <sys/quota.h>
9
10int
11xfsquotactl(
12 int command,
13 const char *device,
14 uint type,
15 uint id,
16 void *addr)
17{
18 /* return quotactl(device, QCMD(command, type), id, addr); */
19 errno = -ENOSYS;
20 return -1;
21}