=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/make/suff.c,v retrieving revision 1.39 retrieving revision 1.40 diff -u -r1.39 -r1.40 --- src/usr.bin/make/suff.c 2000/11/22 17:22:28 1.39 +++ src/usr.bin/make/suff.c 2000/11/24 14:27:20 1.40 @@ -1,4 +1,4 @@ -/* $OpenBSD: suff.c,v 1.39 2000/11/22 17:22:28 espie Exp $ */ +/* $OpenBSD: suff.c,v 1.40 2000/11/24 14:27:20 espie Exp $ */ /* $NetBSD: suff.c,v 1.13 1996/11/06 17:59:25 christos Exp $ */ /* @@ -101,7 +101,7 @@ static char sccsid[] = "@(#)suff.c 8.4 (Berkeley) 3/21/94"; #else UNUSED -static char rcsid[] = "$OpenBSD: suff.c,v 1.39 2000/11/22 17:22:28 espie Exp $"; +static char rcsid[] = "$OpenBSD: suff.c,v 1.40 2000/11/24 14:27:20 espie Exp $"; #endif #endif /* not lint */ @@ -117,7 +117,7 @@ /* * Structure describing an individual suffix. */ -typedef struct _Suff { +typedef struct Suff_ { char *name; /* The suffix itself */ int nameLen; /* Length of the suffix */ short flags; /* Type of suffix */ @@ -135,11 +135,11 @@ /* * Structure used in the search for implied sources. */ -typedef struct _Src { +typedef struct Src_ { char *file; /* The file to look for */ char *pref; /* Prefix from which file was formed */ Suff *suff; /* The suffix on the file */ - struct _Src *parent; /* The Src for which this is a source */ + struct Src_ *parent; /* The Src for which this is a source */ GNode *node; /* The node describing the file */ int children; /* Count of existing children (so we don't free * this thing too early or never nuke it) */