Module Name: src
Committed By: rillig
Date: Fri Sep 4 17:35:00 UTC 2020
Modified Files:
src/usr.bin/make: for.c
Log Message:
make(1): unexport For_Iterate
By convention, exported functions have an underscore, and static
functions don't.
To generate a diff of this commit:
cvs rdiff -u -r1.67 -r1.68 src/usr.bin/make/for.c
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.67 src/usr.bin/make/for.c:1.68
--- src/usr.bin/make/for.c:1.67 Sun Aug 30 19:56:02 2020
+++ src/usr.bin/make/for.c Fri Sep 4 17:35:00 2020
@@ -1,4 +1,4 @@
-/* $NetBSD: for.c,v 1.67 2020/08/30 19:56:02 rillig Exp $ */
+/* $NetBSD: for.c,v 1.68 2020/09/04 17:35:00 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.67 2020/08/30 19:56:02 rillig Exp $";
+static char rcsid[] = "$NetBSD: for.c,v 1.68 2020/09/04 17:35:00 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.67 2020/08/30 19:56:02 rillig Exp $");
+__RCSID("$NetBSD: for.c,v 1.68 2020/09/04 17:35:00 rillig Exp $");
#endif
#endif /* not lint */
#endif
@@ -358,7 +358,7 @@ for_substitute(Buffer *cmds, strlist_t *
}
static char *
-For_Iterate(void *v_arg, size_t *ret_len)
+ForIterate(void *v_arg, size_t *ret_len)
{
For *arg = v_arg;
int i;
@@ -463,5 +463,5 @@ For_Run(int lineno)
return;
}
- Parse_SetInput(NULL, lineno, -1, For_Iterate, arg);
+ Parse_SetInput(NULL, lineno, -1, ForIterate, arg);
}