aboutsummaryrefslogtreecommitdiffstats
path: root/ports/linux/guts/llistxattr.c
blob: a33f9702a84fbc001e37c7a0f0cf39559fb17927 (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 llistxattr(const char *pathname, char *list, size_t size)
 *	ssize_t rc = -1;
 */

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

/*	return rc;
 * }
 */