summaryrefslogtreecommitdiff
path: root/windows
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2016-04-21 22:36:21 +0100
committerVincent Sanders <vince@kyllikki.org>2016-04-21 22:36:21 +0100
commit7d9c9dba3610bb14c0de6acb1bdaf9ec49a66f33 (patch)
tree5efbbb0accdce7586dfe518f3ea0c00a6e8a9c43 /windows
parent3488e337b64f7444f3021ca98f391d4ded3326e4 (diff)
downloadnetsurf-7d9c9dba3610bb14c0de6acb1bdaf9ec49a66f33.tar.gz
netsurf-7d9c9dba3610bb14c0de6acb1bdaf9ec49a66f33.tar.bz2
Split utils header into string functions and everything else
split out the string handling API from the rest of the utils header and fix up all the fallout.
Diffstat (limited to 'windows')
-rw-r--r--windows/download.c1
-rw-r--r--windows/file.c1
-rw-r--r--windows/schedule.c1
3 files changed, 3 insertions, 0 deletions
diff --git a/windows/download.c b/windows/download.c
index 110c27280..c2cda8fb8 100644
--- a/windows/download.c
+++ b/windows/download.c
@@ -29,6 +29,7 @@
#include "utils/url.h"
#include "utils/nsurl.h"
#include "utils/utils.h"
+#include "utils/string.h"
#include "content/fetch.h"
#include "desktop/gui_download.h"
#include "desktop/download.h"
diff --git a/windows/file.c b/windows/file.c
index f8372b453..e9eb9caf9 100644
--- a/windows/file.c
+++ b/windows/file.c
@@ -34,6 +34,7 @@
#include "utils/corestrings.h"
#include "utils/url.h"
#include "utils/file.h"
+#include "utils/string.h"
#include "desktop/browser.h"
#include "windows/file.h"
diff --git a/windows/schedule.c b/windows/schedule.c
index 249e60e27..5366add9c 100644
--- a/windows/schedule.c
+++ b/windows/schedule.c
@@ -16,6 +16,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
+#include <stdlib.h>
#include <time.h>
#include "utils/sys_time.h"