summaryrefslogtreecommitdiff
path: root/usr.bin/make/make_malloc.h
diff options
context:
space:
mode:
authorrillig <rillig@NetBSD.org>2020-12-30 10:03:16 +0000
committerrillig <rillig@NetBSD.org>2020-12-30 10:03:16 +0000
commit3ba2f8a8af37a3d7e07dbe3217d8dd7fec18d3fc (patch)
tree9d25248baefcde00a2dab9ff91f6b32f1111cfc1 /usr.bin/make/make_malloc.h
parent3d19af2a101764f2f2dfbfb3972ab972e19551c2 (diff)
make(1): format multi-line comments
Diffstat (limited to 'usr.bin/make/make_malloc.h')
-rw-r--r--usr.bin/make/make_malloc.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/usr.bin/make/make_malloc.h b/usr.bin/make/make_malloc.h
index 2bee99a4492..4dacc924c40 100644
--- a/usr.bin/make/make_malloc.h
+++ b/usr.bin/make/make_malloc.h
@@ -1,4 +1,4 @@
-/* $NetBSD: make_malloc.h,v 1.14 2020/12/15 01:23:55 rillig Exp $ */
+/* $NetBSD: make_malloc.h,v 1.15 2020/12/30 10:03:16 rillig Exp $ */
/*-
* Copyright (c) 2009 The NetBSD Foundation, Inc.
@@ -41,11 +41,13 @@ char *bmake_strldup(const char *, size_t);
char *bmake_strsedup(const char *, const char *);
-/* Thin wrapper around free(3) to avoid the extra function call in case
+/*
+ * Thin wrapper around free(3) to avoid the extra function call in case
* p is NULL, to save a few machine instructions.
*
* The case of a NULL pointer happens especially often after Var_Value,
- * since only environment variables need to be freed, but not others. */
+ * since only environment variables need to be freed, but not others.
+ */
MAKE_INLINE void
bmake_free(void *p)
{