Hi, I modify some of my function to "reentrant" ones. After that, I got a bunch of unresolved extenals. Why? Further, should I declare the reentrant function prototypes "reentrant"? Like
extern void func(int,int,int) reentrant;
void func(int a,int b,int c) reentrant {....}