1 /* RCS $Id: arlib.c,v 1.1.1.1 2000-09-22 15:33:27 hr Exp $
4 -- Library access code.
7 -- This implementation uses the library timestamp inplace of the
8 -- library member timestamp.
11 -- Dennis Vadura, dvadura@dmake.wticorp.com
14 -- http://dmake.wticorp.com/
17 -- Copyright (c) 1996,1997 by WTI Corp. All rights reserved.
19 -- This program is NOT free software; you can redistribute it and/or
20 -- modify it under the terms of the Software License Agreement Provided
21 -- in the file <distribution-root>/readme/license.txt.
24 -- Use cvs log to obtain detailed change logs.
34 static int warned
= FALSE
;
36 if (!warned
&& !(Glob_attr
&A_SILENT
))
38 Warning("Can't extract library member timestamp;\n\
39 using library timestamp instead.");
40 return (Do_stat(lib
, NULL
, NULL
, TRUE
));
48 static int warned
= FALSE
;
50 if (!warned
&& !(Glob_attr
&A_SILENT
))
52 Warning("Can't update library member timestamp;\n\
53 touching library instead.");
54 return (Do_touch(lib
, NULL
, NULL
));