Paul Eggert wrote: > How about if we remove the mention of <sys/int_types.h> instead? On > Solaris 8 <sys/int_types.h> states that programs "should not directly > include this file" and I expect Solaris 7 is similar.
On Solaris 7, <sys/int_types.h> is included by <sys/types.h>, <sys/inttypes.h>, <sys/regset.h>, <sys/types32.h>. Since our replacement <stdint.h> always include <sys/types.h>, which always includes <sys/int_types.h>, your proposed change is fine: there is no risk of conflict with <sys/regset.h> or <sys/types32.h>. Bruno