aboutsummaryrefslogtreecommitdiffstats
path: root/ports/darwin/guts/fremovexattr.c
blob: 4edc38c17900afe136777e8101fa269b6dda9ebf (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.
 *
 * int fremovexattr(int filedes, const char *name, int options)
 *	int rc = -1;
 */

	rc = shared_removexattr(NULL, filedes, name, options);

/*	return rc;
 * }
 */