forget difference between big and small commands - obsolete with vm.
[minix.git] / commands / aal / arch.h
blob96d489f6577a38177e4b4c247093d6079bbda847
1 /* $Header$ */
2 /*
3 * (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
4 * See the copyright notice in the ACK home directory, in the file "Copyright".
5 */
7 #ifndef __ARCH_H_INCLUDED
8 #define __ARCH_H_INCLUDED
10 #define ARMAG 0177545
11 #define AALMAG 0177454
13 struct ar_hdr {
14 char ar_name[14];
15 long ar_date;
16 char ar_uid;
17 char ar_gid;
18 short ar_mode;
19 long ar_size;
22 #define AR_TOTAL 26
23 #define AR_SIZE 22
25 #endif /* __ARCH_H_INCLUDED */