Initial revision
This commit is contained in:
parent
3744019c53
commit
5db647e661
2 changed files with 22 additions and 0 deletions
10
h/Makefile
Normal file
10
h/Makefile
Normal file
|
@ -0,0 +1,10 @@
|
|||
install cmp:
|
||||
|
||||
opr:
|
||||
make pr | opr
|
||||
|
||||
pr:
|
||||
@pr Makefile *.h
|
||||
|
||||
clean:
|
||||
-rm -f *.old
|
12
h/arch.h
Normal file
12
h/arch.h
Normal file
|
@ -0,0 +1,12 @@
|
|||
#define ARMAG 0177545
|
||||
struct ar_hdr {
|
||||
char ar_name[14];
|
||||
long ar_date;
|
||||
char ar_uid;
|
||||
char ar_gid;
|
||||
int ar_mode;
|
||||
long ar_size;
|
||||
};
|
||||
|
||||
#define AR_TOTAL 26
|
||||
#define AR_SIZE 22
|
Loading…
Reference in a new issue