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

    r4810254 r7ecfb7b  
    7171void nodkey(int16_t k)
    7272{
     73        (void)k;
    7374}
    7475
     
    8182int16_t nonf(int16_t k)
    8283{
     84        (void)k;
     85
    8386        return(SUCCESS);
    8487}
     
    9295int16_t entbh(int16_t n)
    9396{
     97        (void)n;
     98
    9499        enterit();
    95100        return(SUCCESS);
     
    443448void stddkey(int16_t k)
    444449{
     450        (void)k;
     451
    445452        if (infield(stcrow, stccol, curfet)) {
    446453
Note: See TracChangeset for help on using the changeset viewer.