=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/make/arch.c,v retrieving revision 1.31 retrieving revision 1.32 diff -c -r1.31 -r1.32 *** src/usr.bin/make/arch.c 2000/06/23 16:20:01 1.31 --- src/usr.bin/make/arch.c 2000/09/14 13:32:05 1.32 *************** *** 1,4 **** ! /* $OpenBSD: arch.c,v 1.31 2000/06/23 16:20:01 espie Exp $ */ /* $NetBSD: arch.c,v 1.17 1996/11/06 17:58:59 christos Exp $ */ /* --- 1,4 ---- ! /* $OpenBSD: arch.c,v 1.32 2000/09/14 13:32:05 espie Exp $ */ /* $NetBSD: arch.c,v 1.17 1996/11/06 17:58:59 christos Exp $ */ /* *************** *** 39,52 **** * SUCH DAMAGE. */ - #ifndef lint - #if 0 - static char sccsid[] = "@(#)arch.c 8.2 (Berkeley) 1/2/94"; - #else - static char rcsid[] = "$OpenBSD: arch.c,v 1.31 2000/06/23 16:20:01 espie Exp $"; - #endif - #endif /* not lint */ - /*- * arch.c -- * Functions to manipulate libraries, archives and their members. --- 39,44 ---- *************** *** 110,115 **** --- 102,116 ---- #include "dir.h" #include "config.h" + #ifndef lint + #if 0 + static char sccsid[] = "@(#)arch.c 8.2 (Berkeley) 1/2/94"; + #else + UNUSED + static char rcsid[] = "$OpenBSD: arch.c,v 1.32 2000/09/14 13:32:05 espie Exp $"; + #endif + #endif /* not lint */ + #ifdef TARGET_MACHINE #undef MACHINE #define MACHINE TARGET_MACHINE *************** *** 1008,1016 **** GNode *gn; /* Node describing archive member */ { struct ar_hdr *arhPtr; /* Header of desired member */ - time_t modTime; /* Modification time as an integer */ ! arhPtr = ArchStatMember (Varq_Value(ARCHIVE_INDEX, gn), Varq_Value(MEMBER_INDEX, gn), TRUE); if (arhPtr != NULL) { --- 1009,1016 ---- GNode *gn; /* Node describing archive member */ { struct ar_hdr *arhPtr; /* Header of desired member */ ! arhPtr = ArchStatMember(Varq_Value(ARCHIVE_INDEX, gn), Varq_Value(MEMBER_INDEX, gn), TRUE); if (arhPtr != NULL) {