aboutsummaryrefslogtreecommitdiffstats
path: root/ports/unix/guts/readlink.c
blob: 4b3d492bcfe8a41a85019cb716e3c9a0a3b24c4d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* 
 * Copyright (c) 2010 Wind River Systems; see
 * guts/COPYRIGHT for information.
 *
 * SPDX-License-Identifier: LGPL-2.1-only
 *
 * 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;
 * }
 */