r6831@lvps87-230-33-50: verhaegs | 2008-02-03 14:08:57 +0100
[tangerine.git] / compiler / clib / getfsstat.c
blob0f279546c069f87529b02da15e6f2c0f56a1e8a8
1 /*
2 Copyright © 2004, The AROS Development Team. All rights reserved.
3 $Id$
4 */
6 #include <aros/debug.h>
8 #include <errno.h>
9 #include <sys/mount.h>
11 int getfsstat(struct statfs *buf, long bufsize, int flags)
13 # warning Implement getfsstat()
14 AROS_FUNCTION_NOT_IMPLEMENTED("arosc");
16 errno = ENOSYS;
17 return -1;