aboutsummaryrefslogtreecommitdiffstats
path: root/ports/darwin/guts/getxattr.c
blob: ecef9cfa9b7e8677d26d1c4c7233c23791352aca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/*
 * Copyright (c) 2014 Wind River Systems; see
 * guts/COPYRIGHT for information.
 *
 * ssize_t getxattr(const char *path, const char *name, void *value, size_t size, u_int32_t position, int options)
 *	ssize_t rc = -1;
 */

	rc = shared_getxattr(path, -1, name, value, size, position, options);

/*	return rc;
 * }
 */