mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2026-03-24 21:21:10 +01:00
We want public functions to resolve to the internal wrappers at compile-time. For this we need the wrappers to be visible from where the public functions are defined. A simple declaration is not enough if we want the compiler to be able to inline the wrapper and eliminate function overhead. This commit just copies verbatim the contents of pk_wrap.c into pk.c. The next commit will clean up the result (redundant includes etc.).