Either works on linux, but kfreebsd build fails if we don't use the <sys/time.h> include. According to man gettimeofday the correct include is <sys/time.h> Signed-off-by: Andreas Henriksson <andreas@xxxxxxxx> --- misc-utils/logger.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc-utils/logger.c b/misc-utils/logger.c index 99a5569..2994dc0 100644 --- a/misc-utils/logger.c +++ b/misc-utils/logger.c @@ -40,7 +40,7 @@ #include <limits.h> #include <unistd.h> #include <stdlib.h> -#include <time.h> +#include <sys/time.h> #include <stdio.h> #include <ctype.h> #include <string.h> -- 2.1.0.rc1 -- To unsubscribe from this list: send the line "unsubscribe util-linux" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html