[BACK]Return to for.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / usr.bin / make

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/usr.bin/make/for.c between version 1.72 and 1.73

version 1.72, 2020/09/06 19:28:49 version 1.73, 2020/09/06 19:30:53
Line 120  For_Free(For *arg)
Line 120  For_Free(For *arg)
  *     -1: A .for statement with a bad syntax error, discard.   *     -1: A .for statement with a bad syntax error, discard.
  */   */
 int  int
 For_Eval(char *line)  For_Eval(const char *line)
 {  {
     For *new_for;      For *new_for;
     const char *ptr;      const char *ptr;
Line 269  For_Eval(char *line)
Line 269  For_Eval(char *line)
  */   */
   
 int  int
 For_Accum(char *line)  For_Accum(const char *line)
 {  {
     char *ptr = line;      const char *ptr = line;
   
     if (*ptr == '.') {      if (*ptr == '.') {
   

Legend:
Removed from v.1.72  
changed lines
  Added in v.1.73

CVSweb <webmaster@jp.NetBSD.org>