aboutsummaryrefslogtreecommitdiffstats
path: root/ports/darwin/guts/setxattr.c
blob: 3c8fd3d671d4e9339aa7a25aa4b1eace1e4d1295 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/*
 * Copyright (c) 2011 Wind River Systems; see
 * guts/COPYRIGHT for information.
 *
 * int setxattr(const char *pathname, const char *name, const void *value, size_t size, u_int32_t position, int options)
 *	int rc = -1;
 */

	rc = real_setxattr(pathname, name, value, size, position, options);

/*	return rc;
 * }
 */