diff options
| author | rillig <rillig@NetBSD.org> | 2020-12-30 10:03:16 +0000 |
|---|---|---|
| committer | rillig <rillig@NetBSD.org> | 2020-12-30 10:03:16 +0000 |
| commit | 3ba2f8a8af37a3d7e07dbe3217d8dd7fec18d3fc (patch) | |
| tree | 9d25248baefcde00a2dab9ff91f6b32f1111cfc1 /usr.bin/make/enum.c | |
| parent | 3d19af2a101764f2f2dfbfb3972ab972e19551c2 (diff) | |
make(1): format multi-line comments
Diffstat (limited to 'usr.bin/make/enum.c')
| -rw-r--r-- | usr.bin/make/enum.c | 10 |
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) |
