// Include the standard definitions header from the standard library, so that we // have access to 'NULL'. This can be removed if your changes remove the need // for 'NULL'. #include #include "hello_world.h" // Define the function itself. const char *hello(void) { // To fix this function, change the return statement here to instead return // a string equivalent to the string expected by the failing test. return NULL; }