Changeset 7ecfb7b in buchla-68k for ram/etstrn.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/etstrn.c

    r4810254 r7ecfb7b  
    1616int16_t et_strn(int16_t n)
    1717{
     18        (void)n;
     19
    1820        sprintf(ebuf, "%c%02d", grptran < 0 ? '-' : '+', abs(grptran));
    1921
     
    3234{
    3335        register int16_t ival;
     36
     37        (void)n;
    3438
    3539        ebuf[3] = '\0';
     
    5458int16_t rd_strn(int16_t n)
    5559{
     60        (void)n;
     61
    5662        sprintf(dspbuf, "%c%02d", grptran < 0 ? '-' : '+', abs(grptran));
    5763
     
    7379{
    7480        register int16_t ec;
     81
     82        (void)n;
    7583
    7684        if (sdmctl NE 4)
Note: See TracChangeset for help on using the changeset viewer.