(ar_name_equal) [cray]: Subtract 1 like [__hpux].

This commit is contained in:
Roland McGrath 1995-01-07 16:55:30 +00:00
parent e1dd3bfa4a
commit ab0fb2fa6f

View file

@ -429,11 +429,11 @@ ar_name_equal (name, mem, truncated)
struct ar_hdr hdr;
return !strncmp (name, mem,
sizeof (hdr.ar_name) -
#ifndef __hpux
#if !defined (__hpux) && !defined (cray)
1
#else
2
#endif /* __hpux */
#endif /* !__hpux && !cray */
);
#endif
}