aboutsummaryrefslogtreecommitdiffstats
path: root/ports/darwin/guts/fsetxattr.c
blob: d7075959c32e9b44a1a76e345d7d470aa1e4176b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/*
 * Copyright (c) 2014 Wind River Systems; see
 * guts/COPYRIGHT for information.
 *
 * 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;
 * }
 */