summaryrefslogtreecommitdiff
path: root/src/basic/errno-to-name.awk
blob: 0878abacbd61e91e224e72c051e2ac2d303dbbd3 (plain)
1
2
3
4
5
6
7
8
9
BEGIN{
        print "static const char* const errno_names[] = { "
}
!/EDEADLOCK/ && !/EWOULDBLOCK/ && !/ENOTSUP/ {
        printf "        [%s] = \"%s\",\n", $1, $1
}
END{
        print "};"
}