libc: update to a recent newlib version.
This commit is contained in:
parent
cd23acaa4a
commit
af4ac44cb5
77 changed files with 4496 additions and 9989 deletions
|
|
@ -5,6 +5,8 @@
|
|||
#ifndef _TAR_H
|
||||
#define _TAR_H
|
||||
|
||||
#include <sys/features.h>
|
||||
|
||||
/* General definitions */
|
||||
#define TMAGIC "ustar" /* ustar plus null byte. */
|
||||
#define TMAGLEN 6 /* Length of the above. */
|
||||
|
|
@ -25,7 +27,9 @@
|
|||
/* Mode field bit definitions (octal) */
|
||||
#define TSUID 04000 /* Set UID on execution. */
|
||||
#define TSGID 02000 /* Set GID on execution. */
|
||||
#if __XSI_VISIBLE || __POSIX_VISIBLE < 200112
|
||||
#define TSVTX 01000 /* On directories, restricted deletion flag. */
|
||||
#endif
|
||||
#define TUREAD 00400 /* Read by owner. */
|
||||
#define TUWRITE 00200 /* Write by owner. */
|
||||
#define TUEXEC 00100 /* Execute/search by owner. */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue