fixed the function signiture with addition of void.

Basically just added the `void` keyword for consitency with the header
of the mocked module.
This commit is contained in:
Jake Goodwin 2025-03-09 09:33:56 -07:00
parent 28f154e30f
commit 60a6cf345f

View file

@ -39,7 +39,7 @@ void ADC_Enable(void)
mock_c()->actualCall("ADC_Enable"); mock_c()->actualCall("ADC_Enable");
} }
void ADC_Disable() void ADC_Disable(void)
{ {
mock_c()->actualCall("ADC_Disable"); mock_c()->actualCall("ADC_Disable");
} }