1 #pragma once 2 3 #include <unistd.h> 4 5 struct AllocInfo { 6 pid_t pid; 7 char free; 8 char filename[60]; 9 }; 10