diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1996-11-30 21:09:23 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1996-11-30 21:09:23 +0000 |
commit | 67e9b81bf2c3acfeba94fdb222f197904c16cfef (patch) | |
tree | d3c86e29fa60fc56eb72f9263478434f9b2f3607 /usr.bin/make/lst.h | |
parent | 66030e0876e2f9722b759c1df2901e526a7be102 (diff) |
Sync with NetBSD:
- Merge in FreeBSD and Lite2 changes.
- Fix bug where a non-archive target with a .a suffix would always
be considered to be out of date, since it does not have a TOC.
- Fix NetBSD PR #2930: declare missing variable.
Diffstat (limited to 'usr.bin/make/lst.h')
-rw-r--r-- | usr.bin/make/lst.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/usr.bin/make/lst.h b/usr.bin/make/lst.h index 1c5e48b2972..3f928128f54 100644 --- a/usr.bin/make/lst.h +++ b/usr.bin/make/lst.h @@ -1,5 +1,5 @@ -/* $OpenBSD: lst.h,v 1.3 1996/06/26 05:36:35 deraadt Exp $ */ -/* $NetBSD: lst.h,v 1.6 1996/02/04 22:20:46 christos Exp $ */ +/* $OpenBSD: lst.h,v 1.4 1996/11/30 21:08:58 millert Exp $ */ +/* $NetBSD: lst.h,v 1.7 1996/11/06 17:59:12 christos Exp $ */ /* * Copyright (c) 1988, 1989, 1990 The Regents of the University of California. @@ -38,7 +38,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * from: @(#)lst.h 5.3 (Berkeley) 6/1/90 + * from: @(#)lst.h 8.1 (Berkeley) 6/6/93 */ /*- @@ -121,12 +121,12 @@ ClientData Lst_Datum __P((LstNode)); * Functions for entire lists */ /* Find an element in a list */ -LstNode Lst_Find __P((Lst, ClientData, +LstNode Lst_Find __P((Lst, ClientData, int (*)(ClientData, ClientData))); /* Find an element starting from somewhere */ LstNode Lst_FindFrom __P((Lst, LstNode, ClientData, int (*cProc)(ClientData, ClientData))); -/* +/* * See if the given datum is on the list. Returns the LstNode containing * the datum */ |