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

	/* suppress warnings */
	(void) pathname;
	(void) name;
	errno = ENOTSUP;

/*	return rc;
 * }
 */