summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2020-10-09 13:05:51 +0100
committerChris Young <chris@unsatisfactorysoftware.co.uk>2020-10-09 13:05:51 +0100
commit511f4cc8001ed09d361651186aad67fcf098b1c6 (patch)
treea38760afe546a9d2bd44d46dfda9aa5664d1a776
parent12fba46d3e738ad6b865500012f85cb0c35cd45d (diff)
downloadnetsurf-511f4cc8001ed09d361651186aad67fcf098b1c6.tar.gz
netsurf-511f4cc8001ed09d361651186aad67fcf098b1c6.tar.bz2
Add missing include
-rw-r--r--frontends/amiga/clipboard.c1
-rw-r--r--frontends/amiga/dt_picture.c1
-rw-r--r--frontends/amiga/dt_sound.c2
-rw-r--r--frontends/amiga/file.c2
4 files changed, 6 insertions, 0 deletions
diff --git a/frontends/amiga/clipboard.c b/frontends/amiga/clipboard.c
index 00dba2d50..05a83606e 100644
--- a/frontends/amiga/clipboard.c
+++ b/frontends/amiga/clipboard.c
@@ -17,6 +17,7 @@
*/
#include <stdlib.h>
+#include <string.h>
#include <proto/iffparse.h>
#include <proto/intuition.h>
#include <proto/exec.h>
diff --git a/frontends/amiga/dt_picture.c b/frontends/amiga/dt_picture.c
index 2e5d1555b..ed1272bc1 100644
--- a/frontends/amiga/dt_picture.c
+++ b/frontends/amiga/dt_picture.c
@@ -25,6 +25,7 @@
#include <stdbool.h>
#include <stdlib.h>
+#include <string.h>
#include <proto/datatypes.h>
#include <proto/dos.h>
#include <proto/intuition.h>
diff --git a/frontends/amiga/dt_sound.c b/frontends/amiga/dt_sound.c
index 8b63d6a94..16b4f7c62 100644
--- a/frontends/amiga/dt_sound.c
+++ b/frontends/amiga/dt_sound.c
@@ -23,6 +23,8 @@
#ifdef WITH_AMIGA_DATATYPES
#include "amiga/os3support.h"
+#include <string.h>
+
#include <proto/datatypes.h>
#include <proto/dos.h>
#include <proto/intuition.h>
diff --git a/frontends/amiga/file.c b/frontends/amiga/file.c
index 2fe7d6635..79acb1a21 100644
--- a/frontends/amiga/file.c
+++ b/frontends/amiga/file.c
@@ -22,6 +22,8 @@
#include <proto/icon.h>
#include <workbench/icon.h>
+#include <string.h>
+
#include "utils/utils.h"
#include "utils/nsoption.h"
#include "utils/file.h"