Systemd/src/basic/af-to-name.awk
2017-04-25 08:49:16 -04:00

10 lines
187 B
Awk

BEGIN{
print "static const char* const af_names[] = { "
}
!/AF_FILE/ && !/AF_ROUTE/ && !/AF_LOCAL/ {
printf " [%s] = \"%s\",\n", $1, $1
}
END{
print "};"
}