aboutsummaryrefslogtreecommitdiffstats
path: root/ports/linux/xattr/guts/setxattr.c
blob: dd85252bfb93f0d4bff431f09f769bbebdd9a504 (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 flags)
 *	int rc = -1;
 */
	rc = shared_setxattr(path, -1, name, value, size, flags);

/*	return rc;
 * }
 */