aboutsummaryrefslogtreecommitdiffstats
path: root/ports/linux/xattr/guts/getxattr.c
blob: 20e7c72d418282c990a8d091bac860aafc2df099 (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 getxattr(const char *path, const char *name, void *value, size_t size)
 *	ssize_t rc = -1;
 */
	rc = shared_getxattr(path, -1, name, value, size);

/*	return rc;
 * }
 */