aboutsummaryrefslogtreecommitdiffstats
path: root/guts/fclose.c
blob: 4469f5b892d23e0201383d787345feb39db3da5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* 
 * Copyright (c) 2008-2010 Wind River Systems; see
 * guts/COPYRIGHT for information.
 *
 * static int
 * wrap_fclose(FILE *fp) {
 *	int rc = -1;
 */

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

/*	return rc;
 * }
 */