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

	rc = real_getxattr(pathname, name, value, size, position, options);

/*	return rc;
 * }
 */