aboutsummaryrefslogtreecommitdiffstats
path: root/ports/darwin/guts/fremovexattr.c
blob: 125c77c8f8d21fed108483ef96c2bd86b9bab2b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
 * Copyright (c) 2014 Wind River Systems; see
 * guts/COPYRIGHT for information.
 *
 * SPDX-License-Identifier: LGPL-2.1-only
 *
 * int fremovexattr(int filedes, const char *name, int options)
 *	int rc = -1;
 */

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

/*	return rc;
 * }
 */