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/ar.c

    r54 r153  
    124124/* ARGSUSED */
    125125static long int
    126 ar_member_date_1 (int desc, char *mem, int truncated,
    127                   long int hdrpos, long int datapos, long int size,
    128                   long int date, int uid, int gid, int mode, char *name)
     126ar_member_date_1 (int desc UNUSED, char *mem, int truncated,
     127                  long int hdrpos UNUSED, long int datapos UNUSED,
     128                  long int size UNUSED, long int date,
     129                  int uid UNUSED, int gid UNUSED, int mode UNUSED, char *name)
    129130{
    130131  return ar_name_equal (name, mem, truncated) ? date : 0;
     
    213214
    214215static long int
    215 ar_glob_match (int desc, char *mem, int truncated,
    216                long int hdrpos, long int datapos, long int size,
    217                long int date, int uid, int gid, int mode,
    218                struct ar_glob_state *state)
     216ar_glob_match (int desc UNUSED, char *mem, int truncated UNUSED,
     217               long int hdrpos UNUSED, long int datapos UNUSED,
     218               long int size UNUSED, long int date UNUSED, int uid UNUSED,
     219               int gid UNUSED, int mode UNUSED, struct ar_glob_state *state)
    219220{
    220221  if (fnmatch (state->pattern, mem, FNM_PATHNAME|FNM_PERIOD) == 0)
Note: See TracChangeset for help on using the changeset viewer.