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

    r4810254 r7ecfb7b  
    156156int16_t et_null(int16_t n)
    157157{
     158        (void)n;
     159
    158160        return(SUCCESS);
    159161}
     
    161163int16_t ef_null(int16_t n)
    162164{
     165        (void)n;
     166
    163167        return(SUCCESS);
    164168}
     
    166170int16_t rd_null(int16_t n)
    167171{
     172        (void)n;
     173
    168174        return(SUCCESS);
    169175}
     
    171177int16_t nd_null(int16_t n, int16_t k)
    172178{
     179        (void)n;
     180        (void)k;
     181
    173182        return(SUCCESS);
    174183}
Note: See TracChangeset for help on using the changeset viewer.