Initial revision
authorkeie <none@none>
Thu, 23 Aug 1984 13:00:32 +0000 (13:00 +0000)
committerkeie <none@none>
Thu, 23 Aug 1984 13:00:32 +0000 (13:00 +0000)
h/Makefile [new file with mode: 0644]
h/arch.h [new file with mode: 0644]

diff --git a/h/Makefile b/h/Makefile
new file mode 100644 (file)
index 0000000..d94a71a
--- /dev/null
@@ -0,0 +1,10 @@
+install cmp:
+
+opr:
+       make pr | opr
+
+pr:
+       @pr Makefile *.h
+
+clean:
+       -rm -f *.old
diff --git a/h/arch.h b/h/arch.h
new file mode 100644 (file)
index 0000000..0c8e9bf
--- /dev/null
+++ b/h/arch.h
@@ -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