]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/basic/errno-to-name.awk
Merge pull request #6851 from keszybz/fix-masking-with-empty-files
[thirdparty/systemd.git] / src / basic / errno-to-name.awk
1 BEGIN{
2 print "static const char* const errno_names[] = { "
3 }
4 !/EDEADLOCK/ && !/EWOULDBLOCK/ && !/ENOTSUP/ {
5 printf " [%s] = \"%s\",\n", $1, $1
6 }
7 END{
8 print "};"
9 }