2 |
7u83 |
1 |
# Crown Copyright (c) 1997
|
|
|
2 |
#
|
|
|
3 |
# This TenDRA(r) Computer Program is subject to Copyright
|
|
|
4 |
# owned by the United Kingdom Secretary of State for Defence
|
|
|
5 |
# acting through the Defence Evaluation and Research Agency
|
|
|
6 |
# (DERA). It is made available to Recipients with a
|
|
|
7 |
# royalty-free licence for its use, reproduction, transfer
|
|
|
8 |
# to other parties and amendment for any purpose not excluding
|
|
|
9 |
# product development provided that any such use et cetera
|
|
|
10 |
# shall be deemed to be acceptance of the following conditions:-
|
|
|
11 |
#
|
|
|
12 |
# (1) Its Recipients shall ensure that this Notice is
|
|
|
13 |
# reproduced upon any copies or amended versions of it;
|
|
|
14 |
#
|
|
|
15 |
# (2) Any amended version of it shall be clearly marked to
|
|
|
16 |
# show both the nature of and the organisation responsible
|
|
|
17 |
# for the relevant amendment or amendments;
|
|
|
18 |
#
|
|
|
19 |
# (3) Its onward transfer from a recipient to another
|
|
|
20 |
# party shall be deemed to be that party's acceptance of
|
|
|
21 |
# these conditions;
|
|
|
22 |
#
|
|
|
23 |
# (4) DERA gives no warranty or assurance as to its
|
|
|
24 |
# quality or suitability for any purpose and DERA accepts
|
|
|
25 |
# no liability whatsoever in relation to any use to which
|
|
|
26 |
# it may be put.
|
|
|
27 |
#
|
|
|
28 |
+DEFINE TMAGIC %% "ustar" %% ;
|
|
|
29 |
+DEFINE TMAGLEN %% 6 %% ;
|
|
|
30 |
+DEFINE TVERSION %% "00" %% ;
|
|
|
31 |
+DEFINE TVERSLEN %% 2 %% ;
|
|
|
32 |
|
|
|
33 |
+DEFINE REGTYPE %% '0' %% ;
|
|
|
34 |
+DEFINE AREGTYPE %% '\0' %% ;
|
|
|
35 |
+DEFINE LNKTYPE %% '1' %% ;
|
|
|
36 |
+DEFINE SYMTYPE %% '2' %% ;
|
|
|
37 |
+DEFINE CHRTYPE %% '3' %% ;
|
|
|
38 |
+DEFINE BLKTYPE %% '4' %% ;
|
|
|
39 |
+DEFINE DIRTYPE %% '5' %% ;
|
|
|
40 |
+DEFINE FIFOTYPE %% '6' %% ;
|
|
|
41 |
+DEFINE CONTTYPE %% '7' %% ;
|
|
|
42 |
|
|
|
43 |
+DEFINE TSUID %% 04000 %% ;
|
|
|
44 |
+DEFINE TSGID %% 02000 %% ;
|
|
|
45 |
+DEFINE TSVTX %% 01000 %% ;
|
|
|
46 |
+DEFINE TUREAD %% 00400 %% ;
|
|
|
47 |
+DEFINE TUWRITE %% 00200 %% ;
|
|
|
48 |
+DEFINE TUEXEC %% 00100 %% ;
|
|
|
49 |
+DEFINE TGREAD %% 00040 %% ;
|
|
|
50 |
+DEFINE TGWRITE %% 00020 %% ;
|
|
|
51 |
+DEFINE TGEXEC %% 00010 %% ;
|
|
|
52 |
+DEFINE TOREAD %% 00004 %% ;
|
|
|
53 |
+DEFINE TOWRITE %% 00002 %% ;
|
|
|
54 |
+DEFINE TOEXEC %% 00001 %% ;
|