libk  Diff

Differences From Artifact [9ee84449d7]:

To Artifact [71add081ad]:


    25     25   		found_sz = 1, sflag(type_sz, "unsigned " #type); \
    26     26   	if (!found_ofs && sizeof(type) == sizeof(ptrdiff_t)) \
    27     27   		found_ofs = 1, sflag(type_offset, "signed " #type); \
    28     28   }
    29     29   
    30     30   int main() {
    31     31   	int found_sz = 0, found_ofs = 0, found_type = 0;
    32         -	iflag(byte_bits,CHAR_BIT);
           32  +	iflag(arch_byte_bits,CHAR_BIT);
    33     33   	describe_integral(char,char);
    34     34   	describe_integral(short,short);
    35     35   	describe_integral(int,int);
    36     36   	describe_integral(long,long);
    37     37   	describe_integral(long long,llong);
    38     38   	printf("\n");
    39     39   	return 0;
    40     40   }