Subject: warnings in model.c (This message is being sent to CPSC 215 Students and TA's) The sample model.c does produce 2 or 3 compiler warnings when compiled with -Wall The sample model.c is now YOUR model.c so you should fix those. From now on you are responsible for turning in ALL components needed to build your program. You are free to "adopt" sample code provided by me or write your own, but from now on its YOUR program. --------------- Be careful in the components you write NOT TO VIOLATE THE 72 characters per line of source code rule. If you feed your source program to the following test program it will tell you if you have a problem. It will also tell ME if you have a problem, so its a good idea to run it before turning in stuff. /* linecheck.c */ #include main() { int count = 0; int val; while ((val = fgetc(stdin)) > 0) { count += 1; if (val == 10) { if (count > 72) { printf("%d\n", count); } count = 0; } } } --------------- The objid element is simply a serial number that should start with some arbitrary value and be incremented by 1 for each object created.