...
In this compliant solution [GCC Bugs], the appropriate call to memcpy()
is determined outside the function call.:
Code Block | ||||
---|---|---|---|---|
| ||||
#ifdef PLATFORM1 memcpy(dest, src, 12); #else memcpy(dest, src, 24); #endif |
...
Tool | Version | Checker | Description | ||||||
---|---|---|---|---|---|---|---|---|---|
| macrcall | Fully implemented |
Bibliography
[GCC Bugs] | "Non-bugs" |
[ISO/IEC 9899:2011] | Section 6.10.3, "Macro Replacement" |
...