aboutsummaryrefslogtreecommitdiffstats
path: root/ports/linux/xattr/guts/fgetxattr.c
blob: ae8c3a3f1bdf732a556890fd075e2e5288b97657 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/*
 * Copyright (c) 2014 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;
 */
	rc = shared_getxattr(NULL, filedes, name, value, size);

/*	return rc;
 * }
 */