=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/make/arch.h,v retrieving revision 1.6 retrieving revision 1.7 diff -c -r1.6 -r1.7 *** src/usr.bin/make/arch.h 2010/07/19 19:46:43 1.6 --- src/usr.bin/make/arch.h 2012/10/02 10:29:30 1.7 *************** *** 1,6 **** #ifndef ARCH_H #define ARCH_H ! /* $OpenBSD: arch.h,v 1.6 2010/07/19 19:46:43 espie Exp $ */ /* * Copyright (c) 2001 Marc Espie. --- 1,6 ---- #ifndef ARCH_H #define ARCH_H ! /* $OpenBSD: arch.h,v 1.7 2012/10/02 10:29:30 espie Exp $ */ /* * Copyright (c) 2001 Marc Espie. *************** *** 38,48 **** /* Initialization and cleanup */ extern void Arch_Init(void); - #ifdef CLEANUP - extern void Arch_End(void); - #else - #define Arch_End() - #endif /* ok = Arch_ParseArchive(&begin, nodeLst, ctxt); * Given an archive specification, add list of corresponding GNodes to --- 38,43 ---- *************** *** 54,64 **** * Alter the modification time of the archive member described by node * to the current time. */ extern void Arch_Touch(GNode *); - /* Arch_TouchLib(node); - * Update the modification time of the library described by node. - * This is distinct from Arch_Touch, as it also updates the mtime - * of the library's table of contents. */ - extern void Arch_TouchLib(GNode *); /* stamp = Arch_MTime(node); * Find the modification time of a member of an archive *in the * archive*, and returns it. --- 49,54 ---- *************** *** 68,85 **** * Find the modification time of a member of an archive and returns it. * To use when the member only exists within the archive. */ extern TIMESTAMP Arch_MemMTime(GNode *); - /* Arch_FindLib(node, path); - * Search for a library node along a path, and fills the gnode's path - * field to the actual complete path. If we don't find it, we set the - * library name to libname.a, assuming some other mechanism will take - * care of finding it. The library name should be in -l format. */ - extern void Arch_FindLib(GNode *, Lst); - /* bool = Arch_LibOODate(node); - * Decide whether a library node is out-of-date. */ - extern bool Arch_LibOODate(GNode *); - - /* bool = Arch_IsLib(node); - * Decide whether a node is a library. */ - extern bool Arch_IsLib(GNode *); #endif --- 58,62 ----