Hello,
I have a small fix for the file doc/texi-linearize.c from fdutils--5.4-20020222.
The file uses the function 'exit', which is declared in the header file "stdlib.h", but does not include this header file. This can be fixed by the following patch.
== patch starts at following line ========================== --- fdutils-5.4-20020222.orig/doc/texi-linearize.c +++ fdutils-5.4-20020222/doc/texi-linearize.c @@ -1,5 +1,6 @@ #include <stdio.h> #include <string.h> +#include <stdlib.h>
FILE *my_open(char *directory, char *file) == patch ends at previous line =============================
I hope this helps,
Jochen