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

	rc = shared_removexattr(path, -1, name, options);

/*	return rc;
 * }
 */