]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/basic/cap-to-name.awk
Merge pull request #8575 from keszybz/non-absolute-paths
[thirdparty/systemd.git] / src / basic / cap-to-name.awk
1 BEGIN{
2 print "static const char* const capability_names[] = { "
3 }
4 {
5 printf " [%s] = \"%s\",\n", $1, tolower($1)
6 }
7 END{
8 print "};"
9 }