Add a missing include in test.

A fix for r373993.

git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@374448 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/sanitizer_common/TestCases/Posix/crypt.cpp b/test/sanitizer_common/TestCases/Posix/crypt.cpp
index 7927c6b..17ab696 100644
--- a/test/sanitizer_common/TestCases/Posix/crypt.cpp
+++ b/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)