P99
|
◆ P99_WEAK
Declare a symbol to be weak such that it can be provided several times without error. This should be placed before the corresponding declaration and receive the name of the symbol as an argument. Such as P99_WEAK(toto)
unsigned toto;
To have maximum portability this should immediately precede the definition. Another form would be P99_WEAK(func, _func)
unsigned func(void);
By that all references to
Definition at line 561 of file p99_compiler.h. |