// // // // // // // // // // // // // // // // // // // // // // // // // // CS270 Class Example // // Author: Robert Heckendorn // University of Idaho // #include #include // for system #include // for basic unix stuff // #include // for open and open flags // #include // for errno // #include // for strerror int main() { printf("PID REPORT: My pid is: %d and my parent is: %d\n", getpid(), getppid()); return(0); }