mmdf@udel.UUCP (06/02/88)
A couple items from the My Face is Red Department:
1) Glen Overby is right, the patch source I posted is somewhat
out of date. I will post a patch to bring it up to patchlevel 9
within a day. This foul-up of mine will allow new patch users to
practice applying patches. ;-)
2) John B. Rogerson (jbr@astrovax.Princeton.EDU) sent me a
note about another error of mine. Patch uses assertions at several
points in its source and needs the file assert.h. I have an assert.h
on my system, but John does not. I've tacked one to the end of this
message for him and anyone else in a similar situation.
We aim to please!
Frank
---------------------------------cut here for assert.h-------------------------
#ifndef NDEBUG
#define assert(xxx) {if(!(xxx)){fprintf(stderr, "False assertion at line %d in file \"%s\"\n", __LINE__, __FILE__); exit(1);}}
#endif