Solution: warning: incompatible implicit declaration of built-in function ‘bzero’
While using the bzero() function you may have run into the message warning: incompatible implicit declaration of built-in function ‘bzero’. The solution for this common, annoying, message is straightforward. Simply include the header file <string.h> and the warning will go away!
#include <string.h>