Remove redundant (void) parameter declarations

This commit is contained in:
Rangi42
2024-03-01 10:35:50 -05:00
parent 91d22f180e
commit e14ba664ea
38 changed files with 173 additions and 173 deletions

View File

@@ -23,12 +23,12 @@
uint8_t fixPrecision;
uint8_t fix_Precision(void)
uint8_t fix_Precision()
{
return fixPrecision;
}
double fix_PrecisionFactor(void)
double fix_PrecisionFactor()
{
return pow(2.0, fixPrecision);
}