diff options
Diffstat (limited to 'libcxx/src')
-rw-r--r-- | libcxx/src/chrono.cpp | 6 | ||||
-rw-r--r-- | libcxx/src/locale.cpp | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/libcxx/src/chrono.cpp b/libcxx/src/chrono.cpp index 57c74175b3f..62149fbf420 100644 --- a/libcxx/src/chrono.cpp +++ b/libcxx/src/chrono.cpp @@ -8,9 +8,9 @@ //===----------------------------------------------------------------------===// #include "chrono" -#include <cerrno> // errno -#include <system_error> // __throw_system_error -#include <time.h> // clock_gettime, CLOCK_MONOTONIC and CLOCK_REALTIME +#include "cerrno" // errno +#include "system_error" // __throw_system_error +#include <time.h> // clock_gettime, CLOCK_MONOTONIC and CLOCK_REALTIME #if !defined(CLOCK_REALTIME) #include <sys/time.h> // for gettimeofday and timeval diff --git a/libcxx/src/locale.cpp b/libcxx/src/locale.cpp index dafe14e8cda..abf7ecfac85 100644 --- a/libcxx/src/locale.cpp +++ b/libcxx/src/locale.cpp @@ -27,7 +27,7 @@ #include "cwctype" #include "__sso_allocator" #if defined(_LIBCPP_MSVCRT) || defined(__MINGW32__) -#include <support/win32/locale_win32.h> +#include "support/win32/locale_win32.h" #elif !defined(__ANDROID__) #include <langinfo.h> #endif |