Module Name: src Committed By: rillig Date: Sun Sep 6 19:30:54 UTC 2020
Modified Files: src/usr.bin/make: for.c nonints.h Log Message: make(1): add const to For_Eval and For_Accum To generate a diff of this commit: cvs rdiff -u -r1.72 -r1.73 src/usr.bin/make/for.c cvs rdiff -u -r1.104 -r1.105 src/usr.bin/make/nonints.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/usr.bin/make/for.c diff -u src/usr.bin/make/for.c:1.72 src/usr.bin/make/for.c:1.73 --- src/usr.bin/make/for.c:1.72 Sun Sep 6 19:28:49 2020 +++ src/usr.bin/make/for.c Sun Sep 6 19:30:53 2020 @@ -1,4 +1,4 @@ -/* $NetBSD: for.c,v 1.72 2020/09/06 19:28:49 rillig Exp $ */ +/* $NetBSD: for.c,v 1.73 2020/09/06 19:30:53 rillig Exp $ */ /* * Copyright (c) 1992, The Regents of the University of California. @@ -30,14 +30,14 @@ */ #ifndef MAKE_NATIVE -static char rcsid[] = "$NetBSD: for.c,v 1.72 2020/09/06 19:28:49 rillig Exp $"; +static char rcsid[] = "$NetBSD: for.c,v 1.73 2020/09/06 19:30:53 rillig Exp $"; #else #include <sys/cdefs.h> #ifndef lint #if 0 static char sccsid[] = "@(#)for.c 8.1 (Berkeley) 6/6/93"; #else -__RCSID("$NetBSD: for.c,v 1.72 2020/09/06 19:28:49 rillig Exp $"); +__RCSID("$NetBSD: for.c,v 1.73 2020/09/06 19:30:53 rillig Exp $"); #endif #endif /* not lint */ #endif @@ -120,7 +120,7 @@ For_Free(For *arg) * -1: A .for statement with a bad syntax error, discard. */ int -For_Eval(char *line) +For_Eval(const char *line) { For *new_for; const char *ptr; @@ -269,9 +269,9 @@ For_Eval(char *line) */ int -For_Accum(char *line) +For_Accum(const char *line) { - char *ptr = line; + const char *ptr = line; if (*ptr == '.') { Index: src/usr.bin/make/nonints.h diff -u src/usr.bin/make/nonints.h:1.104 src/usr.bin/make/nonints.h:1.105 --- src/usr.bin/make/nonints.h:1.104 Thu Sep 3 18:19:15 2020 +++ src/usr.bin/make/nonints.h Sun Sep 6 19:30:53 2020 @@ -1,4 +1,4 @@ -/* $NetBSD: nonints.h,v 1.104 2020/09/03 18:19:15 rillig Exp $ */ +/* $NetBSD: nonints.h,v 1.105 2020/09/06 19:30:53 rillig Exp $ */ /*- * Copyright (c) 1988, 1989, 1990, 1993 @@ -98,8 +98,8 @@ void Cond_restore_depth(unsigned int); unsigned int Cond_save_depth(void); /* for.c */ -int For_Eval(char *); -int For_Accum(char *); +int For_Eval(const char *); +int For_Accum(const char *); void For_Run(int); /* job.c */