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

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

/*	return rc;
 * }
 */