#include pid_t next_id = 1; /* start at 1 */ pid_t make_process(char* name, char* group, elf_executable_t* exe) { pid_t ret = (pid_t) 0; if (!name || !group || !exe) { return ret; /* ret is already zero */ } next_id++; return ret; }