Module Name:    src
Committed By:   kre
Date:           Fri Apr  7 10:42:28 UTC 2023

Modified Files:
        src/bin/sh: memalloc.c

Log Message:
Remove an end of file trailing blank line that served no purpose.

NFCI


To generate a diff of this commit:
cvs rdiff -u -r1.38 -r1.39 src/bin/sh/memalloc.c

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

Modified files:

Index: src/bin/sh/memalloc.c
diff -u src/bin/sh/memalloc.c:1.38 src/bin/sh/memalloc.c:1.39
--- src/bin/sh/memalloc.c:1.38	Fri Apr  7 10:34:13 2023
+++ src/bin/sh/memalloc.c	Fri Apr  7 10:42:28 2023
@@ -1,4 +1,4 @@
-/*	$NetBSD: memalloc.c,v 1.38 2023/04/07 10:34:13 kre Exp $	*/
+/*	$NetBSD: memalloc.c,v 1.39 2023/04/07 10:42:28 kre Exp $	*/
 
 /*-
  * Copyright (c) 1991, 1993
@@ -37,7 +37,7 @@
 #if 0
 static char sccsid[] = "@(#)memalloc.c	8.3 (Berkeley) 5/4/95";
 #else
-__RCSID("$NetBSD: memalloc.c,v 1.38 2023/04/07 10:34:13 kre Exp $");
+__RCSID("$NetBSD: memalloc.c,v 1.39 2023/04/07 10:42:28 kre Exp $");
 #endif
 #endif /* not lint */
 
@@ -402,4 +402,3 @@ ststrcat(size_t *lp, ...)
 
 	return str;
 }
-

Reply via email to