blob: 2369e51bcb806d47d3fc6d34dba81639582ff984 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/*
* setxattr() wrapper.
*
* Copyright 1999-2021 Gentoo Foundation
* Licensed under the GPL-2
*/
#define WRAPPER_ARGS_PROTO const char *path, const char *name, const void *value, size_t size, int flags
#define WRAPPER_ARGS path, name, value, size, flags
#define WRAPPER_SAFE() SB_SAFE(path)
#include "__wrapper_simple.c"
|