On Fri, 15 Aug 2003, Rob Wultsch wrote:
> Now that I think about it for as simple as this is I should be able to
> correct the C (or C++) . Do you know of any guides to to making a patch
> (change log?) or whatever they are called in to a format that they might
> accept?
> + udelay(1);
That is done with the diff(1) command. Commonly used it the -u switch, for
example:
diff -u the_file.c.orig the_file.c | tee the_file.c.diff
The tool to use a diff file is patch(1).
Jeremy C. Reed
http://bsd.reedmedia.net/