Hello,
I have a small fix for the file src/skews.c from fdutils-5.4-20020222.
The file uses the 'abort' function, 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/src/skews.c +++ fdutils-5.4-20020222/src/skews.c @@ -1,5 +1,6 @@ #include <sys/types.h> #include <stdio.h> +#include <stdlib.h> #include "fdutils.h" #include "superformat.h"
== patch ends at previous line =============================
I hope this helps, Jochen