use same location as .configured, etc, to store .files-touched
[AROS.git] / compiler / clib / fchown.c
bloba6f47a23519c08daa2acf6d628f46d6342390802
1 /*
2 Copyright © 2004, The AROS Development Team. All rights reserved.
3 $Id$
4 */
6 #include <aros/debug.h>
8 /*****************************************************************************
10 NAME */
12 #include <unistd.h>
14 int fchown(
16 /* SYNOPSIS */
17 int fd,
18 uid_t owner,
19 gid_t group)
21 /* FUNCTION
23 INPUTS
25 RESULT
27 NOTES
28 Not implemented.
30 EXAMPLE
32 BUGS
34 SEE ALSO
36 INTERNALS
38 ******************************************************************************/
40 /* FIXME: Implement fchown() */
41 AROS_FUNCTION_NOT_IMPLEMENTED("arosc");
43 return 0;