recsort revision 3f54fd611f536639ec30dd53c48e5ec1897cc7d9
4305N/Asys resource
4305N/Alib getrlimit
4804N/A
4804N/Atst - output{
4804N/A main()
4804N/A { int charbits;
4804N/A
4804N/A for(charbits = 1;; ++charbits)
4804N/A if(((1<<charbits)-1) == (unsigned char)(~0))
4804N/A break;
4804N/A
4804N/A printf("#ifndef CHAR_BIT\n");
4804N/A printf("#define CHAR_BIT\t%d\n",charbits);
4804N/A printf("#endif\n");
4804N/A
4804N/A printf("#ifndef SIZEOF_LONG\n");
4804N/A printf("#define SIZEOF_LONG\t%d\n",sizeof(long));
4804N/A printf("#endif\n");
4804N/A
4804N/A printf("#ifndef SIZEOF_INT\n");
4804N/A printf("#define SIZEOF_INT\t%d\n",sizeof(int));
4804N/A printf("#endif\n");
4804N/A
6006N/A return 0;
4804N/A }
4804N/A}end
4305N/A