=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/make/var.c,v retrieving revision 1.28 retrieving revision 1.29 diff -c -r1.28 -r1.29 *** src/usr.bin/make/var.c 1999/12/19 00:04:25 1.28 --- src/usr.bin/make/var.c 2000/01/08 09:45:16 1.29 *************** *** 1,4 **** ! /* $OpenBSD: var.c,v 1.28 1999/12/19 00:04:25 espie Exp $ */ /* $NetBSD: var.c,v 1.18 1997/03/18 19:24:46 christos Exp $ */ /* --- 1,4 ---- ! /* $OpenBSD: var.c,v 1.29 2000/01/08 09:45:16 espie Exp $ */ /* $NetBSD: var.c,v 1.18 1997/03/18 19:24:46 christos Exp $ */ /* *************** *** 70,76 **** #if 0 static char sccsid[] = "@(#)var.c 8.3 (Berkeley) 3/19/94"; #else ! static char rcsid[] = "$OpenBSD: var.c,v 1.28 1999/12/19 00:04:25 espie Exp $"; #endif #endif /* not lint */ --- 70,76 ---- #if 0 static char sccsid[] = "@(#)var.c 8.3 (Berkeley) 3/19/94"; #else ! static char rcsid[] = "$OpenBSD: var.c,v 1.29 2000/01/08 09:45:16 espie Exp $"; #endif #endif /* not lint */ *************** *** 1314,1320 **** { char *cp; BUFFER buf; ! int junk; Buf_Init(&buf, 0); if (length == NULL) --- 1314,1320 ---- { char *cp; BUFFER buf; ! size_t junk; Buf_Init(&buf, 0); if (length == NULL) *************** *** 1347,1353 **** } else { char *cp2; ! int len; Boolean freeIt; /* --- 1347,1353 ---- } else { char *cp2; ! size_t len; Boolean freeIt; /* *************** *** 1436,1442 **** char *str; /* The string to parse */ GNode *ctxt; /* The context for the variable */ Boolean err; /* TRUE if undefined variables are an error */ ! int *lengthPtr; /* OUT: The length of the specification */ Boolean *freePtr; /* OUT: TRUE if caller should free result */ { register char *tstr; /* Pointer into str */ --- 1436,1442 ---- char *str; /* The string to parse */ GNode *ctxt; /* The context for the variable */ Boolean err; /* TRUE if undefined variables are an error */ ! size_t *lengthPtr; /* OUT: The length of the specification */ Boolean *freePtr; /* OUT: TRUE if caller should free result */ { register char *tstr; /* Pointer into str */