aboutsummaryrefslogtreecommitdiffstats
path: root/guts/fclose.c
blob: bcf4aceafa4129a617d2ccb8f2d79948ccc45687 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* 
 * static int
 * wrap_fclose(FILE *fp) {
 *	int rc = -1;
 */

	if (!fp) {
		errno = EFAULT;
		return -1;
	}
	int fd = fileno(fp);
	pseudo_client_op(OP_CLOSE, fd, -1, 0, 0);
	rc = real_fclose(fp);

/*	return rc;
 * }
 */