mirror of
https://git.proxmox.com/git/systemd
synced 2026-01-06 06:31:15 +00:00
10 lines
194 B
Awk
10 lines
194 B
Awk
BEGIN{
|
|
print "static const char* const errno_names[] = { "
|
|
}
|
|
!/EDEADLOCK/ && !/EWOULDBLOCK/ && !/ENOTSUP/ {
|
|
printf " [%s] = \"%s\",\n", $1, $1
|
|
}
|
|
END{
|
|
print "};"
|
|
}
|