what's the meaning of VOID()
There are the following C code, but what's it's meaning?
VOID(pthread_mutex_init(&tina_mutex,MY_MUTEX_INIT_FAST));
Looks like a preprocessor macro. Your editor should be able to find what it is. Or try
gcc -E source.c > source2.c
It runs the preprocessor only and replaces macros with what they really evaluate to.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With