mirror of
https://github.com/systemd/systemd.git
synced 2026-07-13 02:51:14 +00:00
Even though many of those scripts are very simple, it is easier to include the header than to try to say whether each of those files is trivial enough not to require one.
12 lines
209 B
Awk
12 lines
209 B
Awk
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
|
|
BEGIN{
|
|
print "static const char* const capability_names[] = { "
|
|
}
|
|
{
|
|
printf " [%s] = \"%s\",\n", $1, tolower($1)
|
|
}
|
|
END{
|
|
print "};"
|
|
}
|