[compiler-rt] r374448 - Add a missing include in test.
Evgeniy Stepanov via llvm-commits
llvm-commits at lists.llvm.org
Thu Oct 10 13:47:22 PDT 2019
Author: eugenis
Date: Thu Oct 10 13:47:22 2019
New Revision: 374448
URL: http://llvm.org/viewvc/llvm-project?rev=374448&view=rev
Log:
Add a missing include in test.
A fix for r373993.
Modified:
compiler-rt/trunk/test/sanitizer_common/TestCases/Posix/crypt.cpp
Modified: compiler-rt/trunk/test/sanitizer_common/TestCases/Posix/crypt.cpp
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/sanitizer_common/TestCases/Posix/crypt.cpp?rev=374448&r1=374447&r2=374448&view=diff
==============================================================================
--- compiler-rt/trunk/test/sanitizer_common/TestCases/Posix/crypt.cpp (original)
+++ compiler-rt/trunk/test/sanitizer_common/TestCases/Posix/crypt.cpp Thu Oct 10 13:47:22 2019
@@ -6,6 +6,7 @@
#include <assert.h>
#include <unistd.h>
#include <cstring>
+#include <crypt.h>
int
main (int argc, char** argv)
More information about the llvm-commits
mailing list