aboutsummaryrefslogtreecommitdiffstats
path: root/ports/linux/guts/__fxstat.c
blob: db9716b2adde4151766f62e65469276cb1e387e5 (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.
 *
 * int
 * wrap___fxstat(int ver, int fd, struct stat *buf) {
 *	int rc = -1;
 */

	struct stat64 buf64;
	/* populate buffer with complete data */
	real___fxstat(ver, fd, buf);
	/* obtain fake data */
	rc = wrap___fxstat64(ver, fd, &buf64);
	/* overwrite */
	pseudo_stat32_from64(buf, &buf64);

/*	return rc;
 * }
 */