#include statements that include a slash (header files made up of two parts)
- by wpeters
Sometimes I see header files of the form.
#include <sys/sysinfo.h> // found in /usr/include/sys/sysinfo.h
What is this called and why are these header files different from most others like
#include <stdio.h>
Maybe a group of related header files been grouped, but if I…