aboutsummaryrefslogtreecommitdiffstats
path: root/ports/linux/noxattr/guts/fsetxattr.c
blob: 3c56ddd221af6f6489eb58abbfa1cdfceb9fbcc8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
 * Copyright (c) 2010 Wind River Systems; see
 * guts/COPYRIGHT for information.
 *
 * int fsetxattr(int filedes, const char *name, const void *value, size_t size, int flags)
 *	int rc = -1;
 */

	/* suppress warnings */
	(void) filedes;
	(void) name;
	(void) value;
	(void) size;
	(void) flags;
	errno = ENOTSUP;

/*	return rc;
 * }
 */