Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upMove functions from psa_crypto_helpers.h to a .c file #3606
Labels
Comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
tests/include/test/psa_crypto_helpers.hcontains function definitions. That's a remnant from when we didn't havetests/src/*.cand unit tests had to be compiled as a monolithic C file. It's a problem because merely including the header causes an unused-function warning. The header should contain only function declarations (orstatic inlinefunction definitions, but the functions in that header don't need to be inline).