Sphinx in the nitpick mode complains about standard C identifiers like "size_t", "LONG_MAX" and "errno". This can be solved individually by adding ! before the name, e.g. :c:data:`errno` or using literal text instead of semantic role, e.g. ``errno``. Although it does not solve complains about using types like size_t in function signature. Other way -- add them to the nitpick_ignore list in conf.py.
Linked PRs