aboutsummaryrefslogtreecommitdiffstats
path: root/ports/darwin/guts/fsetxattr.c
blob: 0de3dfcdd93b2172e77df3b30c2579e062f0e8c4 (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.
 *
 * int fsetxattr(int filedes, const char *name, const void *value, size_t size, int flags)
 *	int rc = -1;
 */

	rc = real_fsetxattr(filedes, name, value, size, flags);

/*	return rc;
 * }
 */