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

	/* suppress warnings */
	(void) pathname;
	(void) list;
	(void) size;
	errno = ENOTSUP;

/*	return rc;
 * }
 */