diff options
author | Howard Hinnant <hhinnant@apple.com> | 2011-09-22 19:10:18 +0000 |
---|---|---|
committer | Howard Hinnant <hhinnant@apple.com> | 2011-09-22 19:10:18 +0000 |
commit | 3c78ca07bcfad4053c713cb96538594480fde3af (patch) | |
tree | 0bba5686be76fd18a86605bba7132575e5faea13 /libcxx/include/support/win32/support.h | |
parent | f9b785f1851ae7ee0d39b597637daaf966d356dc (diff) | |
download | bcm5719-llvm-3c78ca07bcfad4053c713cb96538594480fde3af.tar.gz bcm5719-llvm-3c78ca07bcfad4053c713cb96538594480fde3af.zip |
Partial Windows port by Ruben Van Boxem
llvm-svn: 140328
Diffstat (limited to 'libcxx/include/support/win32/support.h')
-rw-r--r-- | libcxx/include/support/win32/support.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/libcxx/include/support/win32/support.h b/libcxx/include/support/win32/support.h new file mode 100644 index 00000000000..1a464bf7bfa --- /dev/null +++ b/libcxx/include/support/win32/support.h @@ -0,0 +1,15 @@ +// -*- C++ -*- +//===--------------------------- support/win32/support.h --------------------------===// +// +// The LLVM Compiler Infrastructure +// +// This file is dual licensed under the MIT and the University of Illinois Open +// Source Licenses. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// + +/* + Functions and constants used in libc++ that are missing from the Windows C library. + */ + +int vasprintf( char **sptr, const char *__restrict__ fmt , va_list ap ); |