]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/basic/errno-to-name.awk
analyze security: fix recursive call of syscall_names_in_filter()
[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 }