* QA Notice: Package has poor programming practices which may compile * fine but exhibit random runtime failures. * cpu.c:253: warning: incompatible implicit declaration of built-in function 'malloc' * cpu.c:1026: warning: incompatible implicit declaration of built-in function 'realloc' * os.c:20: warning: incompatible implicit declaration of built-in function 'free' * os.c:44: warning: incompatible implicit declaration of built-in function 'calloc' * os.c:123: warning: incompatible implicit declaration of built-in function 'free' * os.c:138: warning: incompatible implicit declaration of built-in function 'free' missing #include <stdlib.h> in both
*** Bug 5741 has been marked as a duplicate of this bug. ***
The problem, rather than the missing include, is the use of the plain form or malloc, realloc, calloc and free, rather their g_* variants.
This should now be fixed