aboutsummaryrefslogtreecommitdiffstats
path: root/ports/unix/guts/readlink.c
blob: 18d9dc7904820c70d2195b47351539e1b6d337d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* 
 * Copyright (c) 2010 Wind River Systems; see
 * guts/COPYRIGHT for information.
 *
 * static ssize_t
 * wrap_readlink(const char *path, char *buf, size_t bufsiz) {
 *	ssize_t rc = -1;
 */

	rc = wrap_readlinkat(AT_FDCWD, path, buf, bufsiz);

/*	return rc;
 * }
 */