Home | History | Annotate | Download | only in make-3.81

Lines Matching defs:ar_hdr

244 struct ar_hdr
263 # define ar_hdr _IMAGE_ARCHIVE_MEMBER_HEADER
274 # define AR_HDR_SIZE (sizeof (struct ar_hdr))
429 struct ar_hdr member_header;
709 sizeof (struct ar_hdr.ar_name) - 1. */
727 struct ar_hdr hdr;
766 struct ar_hdr ar_hdr;
782 if (AR_HDR_SIZE != read (fd, (char *) &ar_hdr, AR_HDR_SIZE))
787 if (AR_HDR_SIZE != write (fd, (char *) &ar_hdr, AR_HDR_SIZE))
795 for (ui = 0; ui < sizeof ar_hdr.ar_date; ui++)
796 ar_hdr.ar_date[ui] = ' ';
797 sprintf (ar_hdr.ar_date, "%ld", (long int) statbuf.st_mtime);
799 ar_hdr.ar_date[strlen(ar_hdr.ar_date)] = ' ';
802 ar_hdr.ar_date = statbuf.st_mtime;
807 if (AR_HDR_SIZE != write (fd, (char *) &ar_hdr, AR_HDR_SIZE))