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

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

/*	return rc;
 * }
 */