summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2018-04-22 13:53:48 +0100
committerVincent Sanders <vince@kyllikki.org>2018-04-22 14:03:18 +0100
commit2c7d24c5bc8b99738c25fce68c5b3e485530b5cc (patch)
tree87f5998f0e2a578d0b02d3281138576c8b0c608c
parent43582c50552021bbced0ea11f0ff6c4b2b618529 (diff)
downloadnetsurf-2c7d24c5bc8b99738c25fce68c5b3e485530b5cc.tar.gz
netsurf-2c7d24c5bc8b99738c25fce68c5b3e485530b5cc.tar.bz2
ensure stdint is included where required
-rw-r--r--frontends/beos/filetype.cpp1
-rw-r--r--frontends/monkey/filetype.c1
2 files changed, 2 insertions, 0 deletions
diff --git a/frontends/beos/filetype.cpp b/frontends/beos/filetype.cpp
index 7a2ca97e5..bc988a8c7 100644
--- a/frontends/beos/filetype.cpp
+++ b/frontends/beos/filetype.cpp
@@ -18,6 +18,7 @@
#define __STDBOOL_H__ 1
#include <stdbool.h>
+#include <stdint.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
diff --git a/frontends/monkey/filetype.c b/frontends/monkey/filetype.c
index 979796baf..65c84f9bd 100644
--- a/frontends/monkey/filetype.c
+++ b/frontends/monkey/filetype.c
@@ -32,6 +32,7 @@
#include <stdio.h>
#include <stdbool.h>
+#include <stdint.h>
#include <string.h>
#include <strings.h>
#include <stdlib.h>