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

/*	return rc;
 * }
 */