I started studying old C code (Unix v6) and I'm wondering what is the purpose of a single #
in the beginning of the .c
file. For example from https://github.com/lsahn-gh/unix-v6/blob/master/sys%2Fken%2Falloc.c
#
/*
*/
#include "../param.h"
#include "../systm.h"
#include "../filsys.h"
...