diff options
Diffstat (limited to 'glcdgraphics')
-rw-r--r-- | glcdgraphics/glcd.c | 2 | ||||
-rw-r--r-- | glcdgraphics/pbm.c | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/glcdgraphics/glcd.c b/glcdgraphics/glcd.c index 6a74c33..e79b6b8 100644 --- a/glcdgraphics/glcd.c +++ b/glcdgraphics/glcd.c @@ -16,7 +16,7 @@ #include <stdint.h> #include <syslog.h> -#include <string> +#include <cstring> #include "bitmap.h" #include "glcd.h" diff --git a/glcdgraphics/pbm.c b/glcdgraphics/pbm.c index fe60104..2bca3ef 100644 --- a/glcdgraphics/pbm.c +++ b/glcdgraphics/pbm.c @@ -12,8 +12,9 @@ #include <stdio.h> #include <stdint.h> #include <syslog.h> +#include <cstdlib> -#include <string> +#include <cstring> #include "bitmap.h" #include "pbm.h" |