mlib update: new isnan()/isnanf() implementation
[tangerine.git] / compiler / clib / fchmod.c
blob9b0adb9f45c6bcfbc3eaab5c1bc86049ff60e486
1 /*
2 Copyright © 1995-2002, The AROS Development Team. All rights reserved.
3 $Id$
5 ANSI C function fchmod().
6 */
8 #include <aros/debug.h>
10 /*****************************************************************************
12 NAME */
13 #include <sys/types.h>
14 #include <sys/stat.h>
16 int fchmod (
18 /* SYNOPSIS */
19 int fildes,
20 mode_t mode)
22 /* FUNCTION
24 INPUTS
26 RESULT
28 NOTES
30 EXAMPLE
32 BUGS
34 SEE ALSO
36 INTERNALS
38 HISTORY
40 ******************************************************************************/
42 # warning Implement fchmod()
43 AROS_FUNCTION_NOT_IMPLEMENTED("arosc");
45 return -1;
46 } /* fchmod */