I am attempting to compile code using the <gtk/gtk.h> header file using gcc. Whenever I do so I get the following error:
gtk.c:3:10: fatal error: gtk/gtk.h: No such file or directory
3 | #include <gtk/gtk.h> ^~~~~~~~~~~
I have looked in /usr/include/ and found gtk-1.2 gtk-2.0 and gtk-3.0 all of which have the header files within them necessary to compile the program I'm unsure why GCC can't find those files and how to reroute gcc to find the necessary header files.