Last change
on this file since 706 was 18, checked in by bird, 22 years ago |
Initial revision
|
-
Property cvs2svn:cvs-rev
set to
1.1
-
Property svn:eol-style
set to
native
-
Property svn:executable
set to
*
|
File size:
294 bytes
|
Line | |
---|
1 | /* ar.h (emx+gcc) */
|
---|
2 |
|
---|
3 | #ifndef _AR_H
|
---|
4 | #define _AR_H
|
---|
5 |
|
---|
6 | #define ARMAG "!<arch>\n"
|
---|
7 | #define SARMAG 8
|
---|
8 | #define ARFMAG "`\n"
|
---|
9 |
|
---|
10 | struct ar_hdr
|
---|
11 | {
|
---|
12 | char ar_name[16];
|
---|
13 | char ar_date[12];
|
---|
14 | char ar_uid[6];
|
---|
15 | char ar_gid[6];
|
---|
16 | char ar_mode[8];
|
---|
17 | char ar_size[10];
|
---|
18 | char ar_fmag[2];
|
---|
19 | };
|
---|
20 |
|
---|
21 | #endif /* not _AR_H */
|
---|
Note:
See
TracBrowser
for help on using the repository browser.