aboutsummaryrefslogtreecommitdiffstats
path: root/ports/linux/xattr/guts/setxattr.c
blob: bace0d83c4c97e8d2f4a0bc65d6d75546862eb47 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/*
 * 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, int xflags)
 *	int rc = -1;
 */
	rc = shared_setxattr(path, -1, name, value, size, xflags);

/*	return rc;
 * }
 */