Changeset 7ecfb7b in buchla-68k for ram/etres1.c


Ignore:
Timestamp:
07/14/2017 09:11:47 PM (7 years ago)
Author:
Thomas Lopatic <thomas@…>
Branches:
master
Children:
aa021e2
Parents:
4810254
Message:

Unused variables and parameters.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • ram/etres1.c

    r4810254 r7ecfb7b  
    9797int16_t nd_res1(int16_t n, int16_t k)
    9898{
     99        (void)n;
     100
    99101        ebuf[0] = k;
    100102
     
    116118{
    117119        register int16_t val, grp, gs;
    118         int16_t val1, val2, val3;
     120        int16_t val1, val2;
    119121
    120122        grp = abs(angroup) - 1;
     
    246248        register int16_t ec;
    247249
     250        (void)n;
     251
    248252        ec = stccol - cfetp->flcol;
    249253
     
    282286int16_t et_agrp(int16_t n)
    283287{
     288        (void)n;
     289
    284290        sprintf(ebuf, "%02.2d", abs(angroup));
    285291        ebflag = TRUE;
     
    296302{
    297303        register int16_t ival;
     304
     305        (void)n;
    298306
    299307        ebflag = FALSE;
     
    321329        int8_t  buf[4];
    322330
     331        (void)n;
     332
    323333        sprintf(buf, "%02.2d", abs(angroup));
    324334
     
    340350{
    341351        register int16_t ec;
     352
     353        (void)n;
    342354
    343355        ec = stccol - cfetp->flcol;
Note: See TracChangeset for help on using the changeset viewer.