summaryrefslogtreecommitdiff
path: root/usr.bin/make/enum.c
diff options
context:
space:
mode:
Diffstat (limited to 'usr.bin/make/enum.c')
-rw-r--r--usr.bin/make/enum.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/usr.bin/make/enum.c b/usr.bin/make/enum.c
index cce98690541..9ce6af26dc3 100644
--- a/usr.bin/make/enum.c
+++ b/usr.bin/make/enum.c
@@ -1,4 +1,4 @@
-/* $NetBSD: enum.c,v 1.12 2020/10/05 19:27:47 rillig Exp $ */
+/* $NetBSD: enum.c,v 1.13 2020/12/30 10:03:16 rillig Exp $ */
/*
Copyright (c) 2020 Roland Illig <rillig@NetBSD.org>
@@ -29,13 +29,15 @@
#include "make.h"
-MAKE_RCSID("$NetBSD: enum.c,v 1.12 2020/10/05 19:27:47 rillig Exp $");
+MAKE_RCSID("$NetBSD: enum.c,v 1.13 2020/12/30 10:03:16 rillig Exp $");
-/* Convert a bitset into a string representation, showing the names of the
+/*
+ * Convert a bitset into a string representation, showing the names of the
* individual bits.
*
* Optionally, shortcuts for groups of bits can be added. To have an effect,
- * they need to be listed before their individual bits. */
+ * they need to be listed before their individual bits.
+ */
const char *
Enum_FlagsToString(char *buf, size_t buf_size,
int value, const EnumToStringSpec *spec)