fix sdcc 4.3.0 #14184 build error - error 283: function declarator with no prototype

This commit is contained in:
Matt Parnell
2023-09-08 23:09:24 -05:00
committed by Tim Crawford
parent 181d4c5d59
commit bb1ce2273b
3 changed files with 5 additions and 5 deletions

View File

@ -17,10 +17,10 @@ static const char __code VERSION[] =
xstr(__FIRMWARE_VERSION__);
// clang-format on
const char *board() {
const char *board(void) {
return &BOARD[11];
}
const char *version() {
const char *version(void) {
return &VERSION[13];
}