U0 BlkDevRep()
{//Block Device Report.
    I64 i;

    for (i = 0; i < BLKDEVS_NUM; i++)
        if (blkdev.blkdevs[i].bd_signature == BD_SIGNATURE_VAL)
            //ClassRep() dumps any structure, automatically.
            ClassRep(&blkdev.blkdevs[i],,, TRUE);
            //The lastclass arg tells ClassRep the datatype.
            //lastclass is a language feature of CosmiC.
            //See ::/Demo/LastClass.CC.
}

BlkDevRep;