mirror of
https://git.proxmox.com/git/systemd
synced 2025-12-31 07:43:27 +00:00
12 lines
240 B
Awk
12 lines
240 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 "};"
|
|
}
|