9 Nov
2009
9 Nov
'09
1:01 p.m.
bzero() is used in queue.c and is available from strings.h, needs an include for it. As all includes seems aggregated into internal.h, I added it there rather than directly into queue.c to keep the style consistent. Joakim Index: /home/jocke/gcd/trunk/src/internal.h =================================================================== --- /home/jocke/gcd/trunk/src/internal.h (revision 142) +++ /home/jocke/gcd/trunk/src/internal.h (working copy) @@ -116,6 +119,7 @@ #include <string.h> #include <syslog.h> #include <unistd.h> +#include <strings.h> #define DISPATCH_NOINLINE __attribute__((noinline))