/* * Copyright (c) 2010 Wind River Systems; see * guts/COPYRIGHT for information. * * SPDX-License-Identifier: LGPL-2.1-only * * int setxattr(const char *pathname, const char *name, const void *value, size_t size, int flags) * int rc = -1; */ /* suppress warnings */ (void) pathname; (void) name; (void) value; (void) size; (void) flags; errno = ENOTSUP; /* return rc; * } */