aboutsummaryrefslogtreecommitdiffstats
path: root/ports/linux/xattr/guts/listxattr.c
blob: ac733b24fb22e58fa68fdd97773e340ed5e9b543 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/*
 * Copyright (c) 2014 Wind River Systems; see
 * guts/COPYRIGHT for information.
 *
 * SPDX-License-Identifier: LGPL-2.1-only
 *
 * ssize_t listxattr(const char *path, char *list, size_t size)
 *	ssize_t rc = -1;
 */
	rc = shared_listxattr(path, -1, list, size);

/*	return rc;
 * }
 */