diff options
| author | Eric Fiselier <eric@efcs.ca> | 2014-08-19 17:52:40 +0000 | 
|---|---|---|
| committer | Eric Fiselier <eric@efcs.ca> | 2014-08-19 17:52:40 +0000 | 
| commit | ab79a7a98b661531288c65d96d280066d68c05ae (patch) | |
| tree | be663f6ff982d29d54cf972e3aa829581cd32e51 | |
| parent | 5460cbfda417c3c1b857609b3fc962098547a2aa (diff) | |
| download | bcm5719-llvm-ab79a7a98b661531288c65d96d280066d68c05ae.tar.gz bcm5719-llvm-ab79a7a98b661531288c65d96d280066d68c05ae.zip  | |
fix missing include for ::close in platform_support.h
llvm-svn: 215998
| -rw-r--r-- | libcxx/test/support/platform_support.h | 2 | 
1 files changed, 2 insertions, 0 deletions
diff --git a/libcxx/test/support/platform_support.h b/libcxx/test/support/platform_support.h index 7b1ee8a8db4..09bb29a65e4 100644 --- a/libcxx/test/support/platform_support.h +++ b/libcxx/test/support/platform_support.h @@ -44,6 +44,8 @@  #include <string>  #if defined(_LIBCPP_MSVCRT) || defined(__MINGW32__)  #include <io.h> // _mktemp +#else +#include <unistd.h> // close  #endif  inline  | 

