diff options
author | Marshall Clow <mclow.lists@gmail.com> | 2014-01-16 16:58:45 +0000 |
---|---|---|
committer | Marshall Clow <mclow.lists@gmail.com> | 2014-01-16 16:58:45 +0000 |
commit | 354d39cabcfc37ae29dc40009ed73f68a94013b6 (patch) | |
tree | b43cc5a1bcdf5d1856f3d057712101d5dc336b22 /libcxx/include/support | |
parent | 497332c05f2b46a0603e373022f3587c6d860dfd (diff) | |
download | bcm5719-llvm-354d39cabcfc37ae29dc40009ed73f68a94013b6.tar.gz bcm5719-llvm-354d39cabcfc37ae29dc40009ed73f68a94013b6.zip |
Add license headers to a bunch of libc++ files that were missing them. No functionality change. Fixes 18291. Thanks to Nico for the bug report and the patch.
llvm-svn: 199400
Diffstat (limited to 'libcxx/include/support')
-rw-r--r-- | libcxx/include/support/solaris/floatingpoint.h | 9 | ||||
-rw-r--r-- | libcxx/include/support/solaris/wchar.h | 9 | ||||
-rw-r--r-- | libcxx/include/support/solaris/xlocale.h | 9 |
3 files changed, 27 insertions, 0 deletions
diff --git a/libcxx/include/support/solaris/floatingpoint.h b/libcxx/include/support/solaris/floatingpoint.h index 21b0349aa59..999d144b1f2 100644 --- a/libcxx/include/support/solaris/floatingpoint.h +++ b/libcxx/include/support/solaris/floatingpoint.h @@ -1,3 +1,12 @@ +//===----------------------------------------------------------------------===// +// +// 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. +// +//===----------------------------------------------------------------------===// + #define atof sun_atof #define strtod sun_strtod #include_next "floatingpoint.h" diff --git a/libcxx/include/support/solaris/wchar.h b/libcxx/include/support/solaris/wchar.h index 05a7241789d..0e8e660c8bd 100644 --- a/libcxx/include/support/solaris/wchar.h +++ b/libcxx/include/support/solaris/wchar.h @@ -1,3 +1,12 @@ +//===----------------------------------------------------------------------===// +// +// 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. +// +//===----------------------------------------------------------------------===// + #define iswalpha sun_iswalpha #define iswupper sun_iswupper #define iswlower sun_iswlower diff --git a/libcxx/include/support/solaris/xlocale.h b/libcxx/include/support/solaris/xlocale.h index 359508d9f8f..875a39add76 100644 --- a/libcxx/include/support/solaris/xlocale.h +++ b/libcxx/include/support/solaris/xlocale.h @@ -1,3 +1,12 @@ +//===----------------------------------------------------------------------===// +// +// 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. +// +//===----------------------------------------------------------------------===// + //////////////////////////////////////////////////////////////////////////////// // Minimal xlocale implementation for Solaris. This implements the subset of // the xlocale APIs that libc++ depends on. |