Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/usr.bin/make make(1): remove unnecessary _t suffix from VarL...



details:   https://anonhg.NetBSD.org/src/rev/789492bd6beb
branches:  trunk
changeset: 935512:789492bd6beb
user:      rillig <rillig%NetBSD.org@localhost>
date:      Sat Jul 04 10:49:09 2020 +0000

description:
make(1): remove unnecessary _t suffix from VarLoop type

diffstat:

 usr.bin/make/var.c |  12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)

diffs (53 lines):

diff -r 5a259856bd93 -r 789492bd6beb usr.bin/make/var.c
--- a/usr.bin/make/var.c        Sat Jul 04 10:46:31 2020 +0000
+++ b/usr.bin/make/var.c        Sat Jul 04 10:49:09 2020 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: var.c,v 1.250 2020/07/04 10:46:31 rillig Exp $ */
+/*     $NetBSD: var.c,v 1.251 2020/07/04 10:49:09 rillig Exp $ */
 
 /*
  * Copyright (c) 1988, 1989, 1990, 1993
@@ -69,14 +69,14 @@
  */
 
 #ifndef MAKE_NATIVE
-static char rcsid[] = "$NetBSD: var.c,v 1.250 2020/07/04 10:46:31 rillig Exp $";
+static char rcsid[] = "$NetBSD: var.c,v 1.251 2020/07/04 10:49:09 rillig Exp $";
 #else
 #include <sys/cdefs.h>
 #ifndef lint
 #if 0
 static char sccsid[] = "@(#)var.c      8.3 (Berkeley) 3/19/94";
 #else
-__RCSID("$NetBSD: var.c,v 1.250 2020/07/04 10:46:31 rillig Exp $");
+__RCSID("$NetBSD: var.c,v 1.251 2020/07/04 10:49:09 rillig Exp $");
 #endif
 #endif /* not lint */
 #endif
@@ -278,7 +278,7 @@
     char       *str;           /* string to expand */
     int                strLen;
     Varf_Flags flags;
-} VarLoop_t;
+} VarLoop;
 
 #ifndef NO_REGEX
 /* struct passed as 'void *' to VarRESubstitute() for ":C///" */
@@ -1560,7 +1560,7 @@
              char *word, Boolean addSpace, Buffer *buf,
              void *data)
 {
-    VarLoop_t *loop = data;
+    VarLoop *loop = data;
     char *s;
     int slen;
 
@@ -2212,7 +2212,7 @@
 /* :@var@...${var}...@ */
 static Boolean
 ApplyModifier_At(ApplyModifiersState *st) {
-    VarLoop_t loop;
+    VarLoop loop;
     VarPattern_Flags vflags = VAR_NOSUBST;
 
     st->cp = ++(st->tstr);



Home | Main Index | Thread Index | Old Index