#include "process.h" #include "headers.h" int main(){ int fd_1 = open("makefile", O_RDONLY); if(fd_1 == -1) perror("Could not open makefile"); else process_fd(&fd_1); return 0; }