logswan

Fast Web log analyzer using probabilistic data structures
Log | Files | Refs | README | LICENSE

commit 47fc3fdc75b46db338111b12b3f0ff895b9635ca
parent 6bb2d4258cd2cedef1997d8fc42f4959943c6a38
Author: Frederic Cambus <fred@statdns.com>
Date:   Fri,  3 Aug 2018 21:39:27 +0200

Add missing headers

Diffstat:
Msrc/logswan.c | 3++-
Msrc/output.h | 3++-
2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/src/logswan.c b/src/logswan.c @@ -5,7 +5,7 @@ /* https://www.logswan.org */ /* */ /* Created: 2015-05-31 */ -/* Last Updated: 2018-06-27 */ +/* Last Updated: 2018-08-03 */ /* */ /* Logswan is released under the BSD 2-Clause license. */ /* See LICENSE file for details. */ @@ -25,6 +25,7 @@ #include <stdint.h> #include <stdio.h> #include <string.h> +#include <sys/select.h> #include <sys/socket.h> #include <sys/stat.h> #include <sys/time.h> diff --git a/src/output.h b/src/output.h @@ -5,7 +5,7 @@ /* https://www.logswan.org */ /* */ /* Created: 2015-05-31 */ -/* Last Updated: 2018-06-27 */ +/* Last Updated: 2018-08-03 */ /* */ /* Logswan is released under the BSD 2-Clause license. */ /* See LICENSE file for details. */ @@ -17,6 +17,7 @@ #include "config.h" #include <sys/types.h> +#include <stdint.h> struct results { char *fileName;