aboutsummaryrefslogtreecommitdiffstats
path: root/ports/linux/guts/lremovexattr.c
blob: 38429dae3a7b1ac306a1dbb677f2e5bf2fd40f2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * Copyright (c) 2010 Wind River Systems; see
 * guts/COPYRIGHT for information.
 *
 * int lremovexattr(const char *pathname, const char *name)
 *	int rc = -1;
 */

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

/*	return rc;
 * }
 */