Aix defines in stdio.h
#define fileno(__p) ((__p)->_file)
This breaks the build after 8146879 introduced a method called fileno()
in os.hpp.
Rename fileno() to get_fileno()
#define fileno(__p) ((__p)->_file)
This breaks the build after 8146879 introduced a method called fileno()
in os.hpp.
Rename fileno() to get_fileno()