Where does debian stores C header files like stdio.h, string.h etc? I am working on a project and I need to add a header file to the location but I couldn’t locate it anywhere.
Where does debian stores C header files like stdio.h , string.h etc? I am
Share
The system headers are in
/usr/includeand the headers for user-installed packages are in/usr/local/include.But you only should put headers there if you are writing a library which other projects will use. Otherwise, you should use the
-Iflag for your compiler to specify the location of additional header file search paths.