mirror of
https://github.com/morgan9e/systemd
synced 2026-04-15 00:47:10 +09:00
12 lines
230 B
Awk
12 lines
230 B
Awk
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
|
|
BEGIN{
|
|
print "static const char* const errno_names[] = { "
|
|
}
|
|
!/(EDEADLOCK|EWOULDBLOCK|ENOTSUP)/ {
|
|
printf " [%s] = \"%s\",\n", $1, $1
|
|
}
|
|
END{
|
|
print "};"
|
|
}
|