aboutsummaryrefslogtreecommitdiffstats
path: root/ports/darwin/guts/fsetxattr.c
blob: 8f29ac92b4f4d8ed31fb1413f3cb3ed41fd175ca (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
 *
 * int fsetxattr(int filedes, const char *name, const void *value, size_t size, u_int32_t position, int options)
 *	int rc = -1;
 */

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

/*	return rc;
 * }
 */