diff options
| author | Howard Hinnant <hhinnant@apple.com> | 2011-10-22 20:59:45 +0000 |
|---|---|---|
| committer | Howard Hinnant <hhinnant@apple.com> | 2011-10-22 20:59:45 +0000 |
| commit | e4383379aea7783e11f2229f27fa81b52751e4f4 (patch) | |
| tree | 4f369dabb74c0a9b6d1059d801b4e41607e2157d /libcxx/include/cstdio | |
| parent | a6674c7fc965ef39b97d2faf518587e02cc23d56 (diff) | |
| download | bcm5719-llvm-e4383379aea7783e11f2229f27fa81b52751e4f4.tar.gz bcm5719-llvm-e4383379aea7783e11f2229f27fa81b52751e4f4.zip | |
More windows port work by Ruben Van Boxem
llvm-svn: 142732
Diffstat (limited to 'libcxx/include/cstdio')
| -rw-r--r-- | libcxx/include/cstdio | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/libcxx/include/cstdio b/libcxx/include/cstdio index aa891742ea1..2a6ec762dea 100644 --- a/libcxx/include/cstdio +++ b/libcxx/include/cstdio @@ -126,13 +126,15 @@ using ::scanf; using ::snprintf; using ::sprintf; using ::sscanf; +#ifndef _MSC_VER using ::vfprintf; using ::vfscanf; -using ::vprintf; using ::vscanf; +using ::vsscanf; +#endif // _MSC_VER +using ::vprintf; using ::vsnprintf; using ::vsprintf; -using ::vsscanf; using ::fgetc; using ::fgets; using ::fputc; |

