repo.or.cz
/
tangerine.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
purge remaining gpl code from clib, and make clib build again
[tangerine.git]
/
compiler
/
clib
/
getfsstat.c
blob
0f279546c069f87529b02da15e6f2c0f56a1e8a8
1
/*
2
Copyright © 2004, The AROS Development Team. All rights reserved.
3
$Id$
4
*/
5
6
#include <aros/debug.h>
7
8
#include <errno.h>
9
#include <sys/mount.h>
10
11
int
getfsstat
(
struct
statfs
*
buf
,
long
bufsize
,
int
flags
)
12
{
13
# warning Implement getfsstat()
14
AROS_FUNCTION_NOT_IMPLEMENTED
(
"arosc"
);
15
16
errno
=
ENOSYS
;
17
return
-
1
;
18
}