forked from OSchip/llvm-project
[test/sanitizer-common] Move getpass.cc from Linux into Posix
llvm-svn: 263017
This commit is contained in:
parent
d2f15ba3a1
commit
42bba2eb2a
|
|
@ -4,7 +4,11 @@
|
|||
#include <stdio.h>
|
||||
#include <unistd.h>
|
||||
#include <string.h>
|
||||
#if __linux__
|
||||
#include <pty.h>
|
||||
#else
|
||||
#include <util.h>
|
||||
#endif
|
||||
|
||||
int
|
||||
main (int argc, char** argv)
|
||||
Loading…
Reference in New Issue