Ignore:
Timestamp:
Sep 8, 2004, 4:43:30 AM (21 years ago)
Author:
bird
Message:

GNU Make 3.81beta1.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/GNU/src/gmake/arscan.c

    r54 r153  
    742742/* ARGSUSED */
    743743static long int
    744 ar_member_pos (int desc, char *mem, int truncated,
    745                long int hdrpos, long int datapos, long int size,
    746                long int date, int uid, int gid, int mode, char *name)
     744ar_member_pos (int desc UNUSED, char *mem, int truncated,
     745               long int hdrpos, long int datapos UNUSED, long int size UNUSED,
     746               long int date UNUSED, int uid UNUSED, int gid UNUSED,
     747               int mode UNUSED, char *name)
    747748{
    748749  if (!ar_name_equal (name, mem, truncated))
     
    761762ar_member_touch (char *arname, char *memname)
    762763{
    763   register long int pos = ar_scan (arname, ar_member_pos, (long int) memname);
    764   register int fd;
     764  long int pos = ar_scan (arname, ar_member_pos, (long int) memname);
     765  int fd;
    765766  struct ar_hdr ar_hdr;
    766   register int i;
     767  int i;
     768  unsigned int ui;
    767769  struct stat statbuf;
    768770
     
    791793#if defined(ARFMAG) || defined(ARFZMAG) || defined(AIAMAG) || defined(WINDOWS32)
    792794  /* Advance member's time to that time */
    793   for (i = 0; i < sizeof ar_hdr.ar_date; i++)
    794     ar_hdr.ar_date[i] = ' ';
     795  for (ui = 0; ui < sizeof ar_hdr.ar_date; ui++)
     796    ar_hdr.ar_date[ui] = ' ';
    795797  sprintf (ar_hdr.ar_date, "%ld", (long int) statbuf.st_mtime);
    796798#ifdef AIAMAG
Note: See TracChangeset for help on using the changeset viewer.