Hello,
is it possible to declare a function as inline for external usage in another module?
(using TI compiler for C28). I want to inline a function in other c-sources as well.
What is the best way to do this? Couldn't find any relevant help in SPRU514
I tried it out but ended up with the compiler error #115 function foo was referenced but not defined
moduleA.c
inline int foo(int x)
{
....
}
moduleA.h
extern inline int foo(int x);
Best regards,
Stefan