How to compile this code: #include <string.h> int main ( void ) { char * x = "1235554444111abc"; char * y; y = strchrnul(x, (int)'a'); return( 0 ); } without missing references?