remove UNUSED from prototype in util/sfexpasc.c

This commit is contained in:
nhmall
2025-08-07 20:05:38 -04:00
parent 70510f1dbc
commit dc48ff9f1e

View File

@@ -101,9 +101,9 @@ void exportascii_sfi_##dtyp(NHFILE *nhfp, dtyp *d_##dtyp, \
*/ */
#define SF_C(keyw, dtyp) \ #define SF_C(keyw, dtyp) \
void exportascii_sfo_##dtyp(NHFILE * UNUSED, keyw dtyp *d_##dtyp UNUSED, \ void exportascii_sfo_##dtyp(NHFILE *, keyw dtyp *d_##dtyp UNUSED, \
const char *); \ const char *); \
void exportascii_sfi_##dtyp(NHFILE *UNUSED, keyw dtyp *d_##dtyp, \ void exportascii_sfi_##dtyp(NHFILE *, keyw dtyp *d_##dtyp, \
const char *); \ const char *); \
\ \
void exportascii_sfo_##dtyp(NHFILE *nhfp UNUSED, keyw dtyp *d_##dtyp UNUSED, \ void exportascii_sfo_##dtyp(NHFILE *nhfp UNUSED, keyw dtyp *d_##dtyp UNUSED, \
@@ -116,8 +116,8 @@ void exportascii_sfi_##dtyp(NHFILE *nhfp UNUSED, keyw dtyp *d_##dtyp UNUSED, \
#define SF_X(xxx, dtyp) \ #define SF_X(xxx, dtyp) \
void exportascii_sfo_##dtyp(NHFILE * UNUSED, xxx *d_##dtyp UNUSED, \ void exportascii_sfo_##dtyp(NHFILE *, xxx *d_##dtyp, \
const char * UNUSED); \ const char *); \
void exportascii_sfi_##dtyp(NHFILE *, xxx *d_##dtyp, \ void exportascii_sfi_##dtyp(NHFILE *, xxx *d_##dtyp, \
const char *); \ const char *); \
\ \