Pascal as used on the Apple II, III, Lisa, Mac, and IIgs had the minimal extensions needed to be a systems language and was pretty much isomorphic to C.
The “switch” from Pascal to C in the Mac market was less a “switch” and more a change in preference by developers—you could use either language and line by line your code would be equivalent. And the switch at Apple was likely just following the market.
The APIs themselves used a language independent calling convention—arguments passed in CPU registers, not the stack, and system calls invoked by invalid opcodes in the 0xA000–0xAFFF range, not by JSR to a function pointer—so neither Pascal nor C really had an “advantage.”
1. Transition to C completely.
2. Extend Pascal (like HP did - HP called their resulting language MODCAL).
3. Support in-line C code in the Pascal compiler.
4. Support in-line assembly in the Pascal compiler.
For superior library support and other reasons, Apple made the right choice here.