Initial revision

This commit is contained in:
keie 1984-08-23 13:00:32 +00:00
parent 3744019c53
commit 5db647e661
2 changed files with 22 additions and 0 deletions

10
h/Makefile Normal file
View 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
View 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