Subject: MORE Clarifications on sp1 (This message is being sent to all CPSC 332 students) Your sp1.c module should absolutely NOT CONTAIN a main() function. Needless to say, in order to test your reads() and writes() you will need need to write a module that contains a main() function. Just DON"T include it in sp1.c In the (hopefully unlikely) event that you have never built a multimodule program here is a new and improved sample command line: gcc -g -Wall main.c sp1.c --------------------------------------------- It was also (correctly) noted that the "real" fgets() returns a pointer the buffer that was passed in instead of the number of characters read. Your reads() should be compliant with my original spec and return the number of characters read.