aboutsummaryrefslogtreecommitdiffstats
path: root/ports/darwin/guts/setxattr.c
blob: 9458a6956a733a2a1e66977d4a1992ea79132c89 (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, int flags)
 *	int rc = -1;
 */

	rc = real_setxattr(pathname, name, value, size, flags);

/*	return rc;
 * }
 */