@c ----------------------------------------------------------------------
@node fchmod, unix
@heading @code{fchmod}
@subheading Syntax

@example
#include <unistd.h>

int fchmod(int file, int mode);
@end example

@subheading Description

This function is not implemented under MS-DOS.  If you call it, it will
only write a warning to stderr. 

@c ----------------------------------------------------------------------
@node fclose, stdio
@heading @code{fclose}
@subheading Syntax

@example
#include <stdio.h>

int fclose(FILE *file);
@end example

@subheading Description

This function closes the given @var{file}.

@subheading Return Value

Zero on success, else @code{EOF}. 

@subheading Example

@example
FILE *f = fopen("data", "r");
fprintf(f, "Hello\n");
fclose(f);
@end example

