Paul Eggert wrote: > > gllib\savewd.c(73,27): warning: implicit declaration of function 'fork' is > > invalid in C99 [-Wimplicit-function-declaration] > > Perhaps the attached patch?
Thanks, that might well fix it. Just a worry that a compiler could complain about a missing 'return' statement in static pid_t fork (void) { assure (false); } Maybe instead define it as a macro? #define fork() (assure (false), -1) Bruno