From 8a7a4d6914757dc539348769001f8b8885752695 Mon Sep 17 00:00:00 2001 From: q66 Date: Sun, 2 Dec 2018 03:38:02 +0100 Subject: [PATCH] fix includes --- ostd/build/make.hh | 2 ++ ostd/path.hh | 2 -- src/posix/path.cc | 2 ++ 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/ostd/build/make.hh b/ostd/build/make.hh index 8e3a0e2..f555d1e 100644 --- a/ostd/build/make.hh +++ b/ostd/build/make.hh @@ -23,6 +23,8 @@ #define OSTD_BUILD_MAKE_HH #include +#include +#include #include #include #include diff --git a/ostd/path.hh b/ostd/path.hh index b9f2282..c5d97a9 100644 --- a/ostd/path.hh +++ b/ostd/path.hh @@ -49,8 +49,6 @@ #include -#include -#include #include #include #include diff --git a/src/posix/path.cc b/src/posix/path.cc index 8ef5e68..65c1760 100644 --- a/src/posix/path.cc +++ b/src/posix/path.cc @@ -27,6 +27,8 @@ #include #include +#include +#include #include "ostd/path.hh"