Details
Details
Diff Detail
Diff Detail
- Repository
- rL LLVM
Event Timeline
compiler-rt/lib/sanitizer_common/sanitizer_common_interceptors.inc | ||
---|---|---|
9593 ↗ | (On Diff #223111) | maybe just write all? |
Comment Actions
The Posix/crypt.cpp test case fails on my system with:
/home/uweigand/llvm/llvm-head/projects/compiler-rt/test/sanitizer_common/TestCases/Posix/crypt.cpp:18:15: error: use of undeclared identifier 'crypt' char *p = crypt("abcdef", "$1$");
I believe the test case is missing a
#include <crypt.h>