Please add OSF/1 to your Change list.
=================================================================================================================================================
uname -a OSF1 V5.1 2650 alpha
>cat test.c
#include <stdio.h>
int main(void){
char c;
printf("%zu, %zu", sizeof c, sizeof (int));
return 0;
}
> cc test.c
cc: Warning: test.c, line 5: In this statement, this argument to printf has a conversion specification "%zu" that is not supported or not fully supported on this platform. (unsupconvspec)
printf("%zu, %zu", sizeof c, sizeof (int));
---------------------------^
cc: Warning: test.c, line 5: In this statement, this argument to printf has a conversion specification "%zu" that is not supported or not fully supported on this platform. (unsupconvspec)
printf("%zu, %zu", sizeof c, sizeof (int));
-------------------------------------^
> ./a.out
zu, zu>
===================================================================================================================================================
That's very nice of you!
--