03-09-2013, 04:08 PM
The rule states, in part, "The identifiers calloc, malloc, realloc and free shall not be used" but does not define what constitutes a use. Is the following example (intended to be) a violation of Rule 21.3?
Code:
void *(*mymalloc)(size_t) = malloc;
<t></t>