]> Git Repo - qemu.git/blob - include/qemu/xattr.h
error: Fix use of error_prepend() with &error_fatal, &error_abort
[qemu.git] / include / qemu / xattr.h
1 /*
2  * Host xattr.h abstraction
3  *
4  * Copyright 2011 Red Hat Inc. and/or its affiliates
5  *
6  * Authors:
7  *  Avi Kivity <[email protected]>
8  *
9  * This work is licensed under the terms of the GNU GPL, version 2, or any
10  * later version.  See the COPYING file in the top-level directory.
11  *
12  */
13 #ifndef QEMU_XATTR_H
14 #define QEMU_XATTR_H
15
16 /*
17  * Modern distributions (e.g. Fedora 15), have no libattr.so, place attr.h
18  * in /usr/include/sys, and don't have ENOATTR.
19  */
20
21
22 #ifdef CONFIG_LIBATTR
23 #  include <attr/xattr.h>
24 #else
25 #  define ENOATTR ENODATA
26 #  include <sys/xattr.h>
27 #endif
28
29 #endif
This page took 0.025217 seconds and 4 git commands to generate.