mirror of
https://github.com/morgan9e/systemd
synced 2026-04-14 16:37:19 +09: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
233 B
Awk
12 lines
233 B
Awk
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
|
|
BEGIN{
|
|
print "static const char* const af_names[] = { "
|
|
}
|
|
!/AF_FILE/ && !/AF_ROUTE/ && !/AF_LOCAL/ {
|
|
printf " [%s] = \"%s\",\n", $1, $1
|
|
}
|
|
END{
|
|
print "};"
|
|
}
|