aboutsummaryrefslogtreecommitdiffstats
path: root/ports/darwin/guts/getxattr.c
blob: 96fc1e842a8b1e543a2715ddae39a7c0bdf88bb4 (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)
 *	ssize_t rc = -1;
 */

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

/*	return rc;
 * }
 */