Subject: turning in mp1 (This message is being sent to all CPSC 322 students) The directories are now available on jmw:/local/jmw2/class/322/mp1 All functions comprising the program (including reads() and writes() should be in source file mp1.c The command: gcc -g -Wall mp1.c should build your program and issue NO warnings. You may include .h files in your directory at your discretion (but you don't have to). Any "debug/diagnostic/informational" prints in your program should be DISABLED. In general the proper way to insert such statements is: #ifdef DBG_THIS fprintf(stderr, "Made it past open \n"); #endif Then YOU can compile with: gcc -g -Wall -DDBG_THIS mp1.c when you want your debug prints active, but when I compile as above they will be safely deactivated.