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

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

/*	return rc;
 * }
 */