source: EcnlProtoTool/trunk/musl-1.1.18/include/sys/xattr.h@ 331

Last change on this file since 331 was 331, checked in by coas-nagasima, 6 years ago

prototoolに関連するプロジェクトをnewlibからmuslを使うよう変更・更新
ntshellをnewlibの下位の実装から、muslのsyscallの実装に変更・更新
以下のOSSをアップデート
・mruby-1.3.0
・musl-1.1.18
・onigmo-6.1.3
・tcc-0.9.27
以下のOSSを追加
・openssl-1.1.0e
・curl-7.57.0
・zlib-1.2.11
以下のmrbgemsを追加
・iij/mruby-digest
・iij/mruby-env
・iij/mruby-errno
・iij/mruby-iijson
・iij/mruby-ipaddr
・iij/mruby-mock
・iij/mruby-require
・iij/mruby-tls-openssl

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/x-chdr
File size: 886 bytes
Line 
1#ifndef _SYS_XATTR_H
2#define _SYS_XATTR_H
3#ifdef __cplusplus
4extern "C" {
5#endif
6
7#define __NEED_ssize_t
8#define __NEED_size_t
9#include <bits/alltypes.h>
10
11#define XATTR_CREATE 1
12#define XATTR_REPLACE 2
13
14ssize_t getxattr(const char *, const char *, void *, size_t);
15ssize_t lgetxattr(const char *, const char *, void *, size_t);
16ssize_t fgetxattr(int, const char *, void *, size_t);
17ssize_t listxattr(const char *, char *, size_t);
18ssize_t llistxattr(const char *, char *, size_t);
19ssize_t flistxattr(int, char *, size_t);
20int setxattr(const char *, const char *, const void *, size_t, int);
21int lsetxattr(const char *, const char *, const void *, size_t, int);
22int fsetxattr(int, const char *, const void *, size_t, int);
23int removexattr(const char *, const char *);
24int lremovexattr(const char *, const char *);
25int fremovexattr(int, const char *);
26
27#ifdef __cplusplus
28}
29#endif
30#endif
Note: See TracBrowser for help on using the repository browser.