home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 4 / DATAFILE_PDCD4.iso / unix / armlinux / alpha / PARTITIONS / USR_GZ / usr / include / ar.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-05-14  |  292 b   |  21 lines

  1. /* Typed in by Richard */
  2. /* minor changes for linux */
  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.     char    ar_name[16],
  12.         ar_date[12],
  13.         ar_uid[6],
  14.         ar_gid[6],
  15.         ar_mode[8],
  16.         ar_size[10],
  17.         ar_fmag[2];
  18. };
  19.  
  20. #endif /* _AR_H */
  21.