# HG changeset patch # User Binki # Date 2009-10-14 00:27:48 # Node ID 10a71d661bb0b1b7c4535b006b36c6db67d8a1bd # Parent d895edae841727f8638ef37d09ec94f29659a351 fix lacking prototype for getlin() diff --git a/src/server/distrend.c b/src/server/distrend.c --- a/src/server/distrend.c +++ b/src/server/distrend.c @@ -20,6 +20,11 @@ /* This file contains the code which both processes (renders) jobs as a slave, and the code which distributes frames to slaves after receiving them from the client portion of the codebase. */ +/* + To get getline(): + */ +#define _GNU_SOURCE 1 + #include "execio.h" #include "options.h" #include "distrenjob.h"