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

	rc = shared_setxattr(path, -1, name, value, size, position, options);

/*	return rc;
 * }
 */