diff options
| author | Evgeniy Stepanov <eugeni.stepanov@gmail.com> | 2019-10-10 20:47:22 +0000 |
|---|---|---|
| committer | Evgeniy Stepanov <eugeni.stepanov@gmail.com> | 2019-10-10 20:47:22 +0000 |
| commit | 53a53e63c85e53e70ea208a38d4efa9b90fb5f42 (patch) | |
| tree | ecb64f8fbad54eff691d4ca7347e71c8d1cc8484 | |
| parent | 67f0c5c085782aa6cf36b2253b83b04351215343 (diff) | |
| download | bcm5719-llvm-53a53e63c85e53e70ea208a38d4efa9b90fb5f42.tar.gz bcm5719-llvm-53a53e63c85e53e70ea208a38d4efa9b90fb5f42.zip | |
Add a missing include in test.
A fix for r373993.
llvm-svn: 374448
| -rw-r--r-- | compiler-rt/test/sanitizer_common/TestCases/Posix/crypt.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler-rt/test/sanitizer_common/TestCases/Posix/crypt.cpp b/compiler-rt/test/sanitizer_common/TestCases/Posix/crypt.cpp index 7927c6b6ab4..17ab6965b20 100644 --- a/compiler-rt/test/sanitizer_common/TestCases/Posix/crypt.cpp +++ b/compiler-rt/test/sanitizer_common/TestCases/Posix/crypt.cpp @@ -6,6 +6,7 @@ #include <assert.h> #include <unistd.h> #include <cstring> +#include <crypt.h> int main (int argc, char** argv) |

