Handle each of stderr/stdin/stdout separately.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33373 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Reid Spencer 2007-01-19 21:30:39 +00:00
parent ab60be7a00
commit 81e3954dc9

View File

@ -172,7 +172,11 @@ void* DynamicLibrary::SearchForAddressOfSymbol(const char* symbolName) {
{
#ifndef stdin
EXPLICIT_SYMBOL(stdin);
#endif
#ifndef stdout
EXPLICIT_SYMBOL(stdout);
#endif
#ifndef stderr
EXPLICIT_SYMBOL(stderr);
#endif
}