I'm not sure whats wrong with this it says incompatible implicit built in func Well I did include string.h file but it still giving me a error
int name_read;
int name_bytes = 100;
char *name;
printf("Please enter name:\n");
name = (char *)malloc(name_bytes + 1);
name_read = getline(&name, &name_bytes, stdin);