Can't functions call other functions?

In reply to sbellock:

Same thing I’m afraid. I even tried putting empty brackets on the function definition itself but that made no difference either.

function void Oranges();
endfunction

function void Apples();
  Oranges();
endfunction

Same deal above. I added these to remove any dependency on my always_ff() block.