Module Name:    src
Committed By:   rillig
Date:           Sat Nov 21 20:16:14 UTC 2020

Modified Files:
        src/usr.bin/make: suff.c

Log Message:
make(1): move prototype of SuffFindDeps further down

Just to limit its scope.


To generate a diff of this commit:
cvs rdiff -u -r1.274 -r1.275 src/usr.bin/make/suff.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/suff.c
diff -u src/usr.bin/make/suff.c:1.274 src/usr.bin/make/suff.c:1.275
--- src/usr.bin/make/suff.c:1.274	Sat Nov 21 20:12:08 2020
+++ src/usr.bin/make/suff.c	Sat Nov 21 20:16:14 2020
@@ -1,4 +1,4 @@
-/*	$NetBSD: suff.c,v 1.274 2020/11/21 20:12:08 rillig Exp $	*/
+/*	$NetBSD: suff.c,v 1.275 2020/11/21 20:16:14 rillig Exp $	*/
 
 /*
  * Copyright (c) 1988, 1989, 1990, 1993
@@ -114,7 +114,7 @@
 #include "dir.h"
 
 /*	"@(#)suff.c	8.4 (Berkeley) 3/21/94"	*/
-MAKE_RCSID("$NetBSD: suff.c,v 1.274 2020/11/21 20:12:08 rillig Exp $");
+MAKE_RCSID("$NetBSD: suff.c,v 1.275 2020/11/21 20:16:14 rillig Exp $");
 
 #define SUFF_DEBUG0(text) DEBUG0(SUFF, text)
 #define SUFF_DEBUG1(fmt, arg1) DEBUG1(SUFF, fmt, arg1)
@@ -211,8 +211,6 @@ static Suffix *nullSuff;
 static Suffix *emptySuff;
 
 
-static void SuffFindDeps(GNode *, SrcList *);
-
 static Suffix *
 Suffix_Ref(Suffix *suff)
 {
@@ -1424,6 +1422,8 @@ SuffApplyTransform(GNode *tgn, GNode *sg
 }
 
 
+static void SuffFindDeps(GNode *, SrcList *);
+
 /* Locate dependencies for an OP_ARCHV node.
  *
  * Input:

Reply via email to