aboutsummaryrefslogtreecommitdiffstats
path: root/ports/darwin/guts/fgetxattr.c
blob: 56b09d0113309a13c405b8f7177cf9eea24aa1c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
 * Copyright (c) 2014 Wind River Systems; see
 * guts/COPYRIGHT for information.
 *
 * SPDX-License-Identifier: LGPL-2.1-only
 *
 * ssize_t fgetxattr(int filedes, const char *name, void *value, size_t size, u_int32_t position, int options)
 *	ssize_t rc = -1;
 */

	rc = shared_getxattr(NULL, filedes, name, value, size, position, options);

/*	return rc;
 * }
 */