source: EcnlProtoTool/trunk/musl-1.1.18/include/cpio.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: 551 bytes
Line 
1#ifndef _CPIO_H
2#define _CPIO_H
3
4#define MAGIC "070707"
5
6#define C_IRUSR 000400
7#define C_IWUSR 000200
8#define C_IXUSR 000100
9#define C_IRGRP 000040
10#define C_IWGRP 000020
11#define C_IXGRP 000010
12#define C_IROTH 000004
13#define C_IWOTH 000002
14#define C_IXOTH 000001
15
16#define C_ISUID 004000
17#define C_ISGID 002000
18#define C_ISVTX 001000
19
20#define C_ISBLK 060000
21#define C_ISCHR 020000
22#define C_ISDIR 040000
23#define C_ISFIFO 010000
24#define C_ISSOCK 0140000
25#define C_ISLNK 0120000
26#define C_ISCTG 0110000
27#define C_ISREG 0100000
28
29#endif
Note: See TracBrowser for help on using the repository browser.