From b13e7c9884472be3fc38ca5a198fffcd99a27dcc Mon Sep 17 00:00:00 2001 From: Daniel Willmann <daniel@totalueberwachung.de> Date: Sat, 3 May 2014 21:20:12 +0200 Subject: [PATCH] Include stdint.h to avoid "x does not name a type" error --- fastclient/client.c | 1 + fastclient/flash.c | 1 + fastclient/snow.c | 1 + 3 files changed, 3 insertions(+) diff --git a/fastclient/client.c b/fastclient/client.c index 4432d3f..fd39523 100644 --- a/fastclient/client.c +++ b/fastclient/client.c @@ -3,6 +3,7 @@ #include <string.h> #include <stdio.h> #include <unistd.h> +#include <stdint.h> #include <stdlib.h> #include <vector> diff --git a/fastclient/flash.c b/fastclient/flash.c index 1c4d4b9..797d514 100644 --- a/fastclient/flash.c +++ b/fastclient/flash.c @@ -4,6 +4,7 @@ #include <stdio.h> #include <unistd.h> #include <stdlib.h> +#include <stdint.h> #include <vector> #include <math.h> diff --git a/fastclient/snow.c b/fastclient/snow.c index 55a97ff..619bdfd 100644 --- a/fastclient/snow.c +++ b/fastclient/snow.c @@ -4,6 +4,7 @@ #include <stdio.h> #include <unistd.h> #include <stdlib.h> +#include <stdint.h> #include <vector> #include <math.h> -- GitLab