aboutsummaryrefslogtreecommitdiffstats
path: root/ports/linux/guts/stat.c
blob: f8c73f76da955a71c1afc24e6bda5d8380ad9bd2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
 * Copyright (c) 2011 Wind River Systems; see
 * guts/COPYRIGHT for information.
 *
 * SPDX-License-Identifier: LGPL-2.1-only
 *
 * int stat(const char *path, struct stat *buf)
 *	int rc = -1;
 */

	rc = wrap___fxstatat(_STAT_VER, AT_FDCWD, path, buf, 0);

/*	return rc;
 * }
 */