diff options
Diffstat (limited to 'libstdc++-v3/std')
51 files changed, 158 insertions, 0 deletions
diff --git a/libstdc++-v3/std/algorithm b/libstdc++-v3/std/algorithm new file mode 100644 index 00000000000..eebcdf22977 --- /dev/null +++ b/libstdc++-v3/std/algorithm @@ -0,0 +1,3 @@ +#ifndef _CPP_ALGORITHM +#include <bits/std_algorithm.h> +#endif diff --git a/libstdc++-v3/std/bitset b/libstdc++-v3/std/bitset new file mode 100644 index 00000000000..e334ec96451 --- /dev/null +++ b/libstdc++-v3/std/bitset @@ -0,0 +1,3 @@ +#ifndef _CPP_BITSET +#include <bits/std_bitset.h> +#endif diff --git a/libstdc++-v3/std/cassert b/libstdc++-v3/std/cassert new file mode 100644 index 00000000000..bee254d55f1 --- /dev/null +++ b/libstdc++-v3/std/cassert @@ -0,0 +1,3 @@ +// This one should not have include guards. +#include <bits/std_cassert.h> + diff --git a/libstdc++-v3/std/cctype b/libstdc++-v3/std/cctype new file mode 100644 index 00000000000..d888a3f80ed --- /dev/null +++ b/libstdc++-v3/std/cctype @@ -0,0 +1,3 @@ +#ifndef _CPP_CCTYPE +#include <bits/std_cctype.h> +#endif diff --git a/libstdc++-v3/std/cerrno b/libstdc++-v3/std/cerrno new file mode 100644 index 00000000000..5d2cf1f61a4 --- /dev/null +++ b/libstdc++-v3/std/cerrno @@ -0,0 +1,3 @@ +#ifndef _CPP_CERRNO +#include <bits/std_cerrno.h> +#endif diff --git a/libstdc++-v3/std/cfloat b/libstdc++-v3/std/cfloat new file mode 100644 index 00000000000..c6cb35731a8 --- /dev/null +++ b/libstdc++-v3/std/cfloat @@ -0,0 +1,3 @@ +#ifndef _CPP_CFLOAT +#include <bits/std_cfloat.h> +#endif diff --git a/libstdc++-v3/std/ciso646 b/libstdc++-v3/std/ciso646 new file mode 100644 index 00000000000..188676772bb --- /dev/null +++ b/libstdc++-v3/std/ciso646 @@ -0,0 +1,3 @@ +#ifndef _CPP_ISO646 +#include <bits/std_ciso646.h> +#endif diff --git a/libstdc++-v3/std/climits b/libstdc++-v3/std/climits new file mode 100644 index 00000000000..b7614847bbe --- /dev/null +++ b/libstdc++-v3/std/climits @@ -0,0 +1,3 @@ +#ifndef _CPP_CLIMITS +#include <bits/std_climits.h> +#endif diff --git a/libstdc++-v3/std/clocale b/libstdc++-v3/std/clocale new file mode 100644 index 00000000000..6ac636f8786 --- /dev/null +++ b/libstdc++-v3/std/clocale @@ -0,0 +1,3 @@ +#ifndef _CPP_CLOCALE +#include <bits/std_clocale.h> +#endif diff --git a/libstdc++-v3/std/cmath b/libstdc++-v3/std/cmath new file mode 100644 index 00000000000..783e76af1c5 --- /dev/null +++ b/libstdc++-v3/std/cmath @@ -0,0 +1,3 @@ +#ifndef _CPP_CMATH +#include <bits/std_cmath.h> +#endif diff --git a/libstdc++-v3/std/complex b/libstdc++-v3/std/complex new file mode 100644 index 00000000000..2cc52f5531d --- /dev/null +++ b/libstdc++-v3/std/complex @@ -0,0 +1,3 @@ +#ifndef _CPP_COMPLEX +#include <bits/std_complex.h> +#endif diff --git a/libstdc++-v3/std/csetjmp b/libstdc++-v3/std/csetjmp new file mode 100644 index 00000000000..79531e3607a --- /dev/null +++ b/libstdc++-v3/std/csetjmp @@ -0,0 +1,4 @@ + +#ifndef _CPP_CSETJMP +#include <bits/std_csetjmp.h> +#endif diff --git a/libstdc++-v3/std/csignal b/libstdc++-v3/std/csignal new file mode 100644 index 00000000000..e5c1837a4a5 --- /dev/null +++ b/libstdc++-v3/std/csignal @@ -0,0 +1,4 @@ + +#ifndef _CPP_CSIGNAL +#include <bits/std_csignal.h> +#endif diff --git a/libstdc++-v3/std/cstdarg b/libstdc++-v3/std/cstdarg new file mode 100644 index 00000000000..37b2459f6a5 --- /dev/null +++ b/libstdc++-v3/std/cstdarg @@ -0,0 +1,4 @@ + +#ifndef _CPP_CSTDARG +#include <bits/std_cstdarg.h> +#endif diff --git a/libstdc++-v3/std/cstddef b/libstdc++-v3/std/cstddef new file mode 100644 index 00000000000..fab421423ba --- /dev/null +++ b/libstdc++-v3/std/cstddef @@ -0,0 +1,3 @@ +#ifndef _CPP_CSTDDEF +#include <bits/std_cstddef.h> +#endif diff --git a/libstdc++-v3/std/cstdio b/libstdc++-v3/std/cstdio new file mode 100644 index 00000000000..f2a0135e65a --- /dev/null +++ b/libstdc++-v3/std/cstdio @@ -0,0 +1,3 @@ +#ifndef _CPP_CSTDIO +#include <bits/std_cstdio.h> +#endif diff --git a/libstdc++-v3/std/cstdlib b/libstdc++-v3/std/cstdlib new file mode 100644 index 00000000000..98230261186 --- /dev/null +++ b/libstdc++-v3/std/cstdlib @@ -0,0 +1,3 @@ +#ifndef _CPP_CSTDLIB +#include <bits/std_cstdlib.h> +#endif diff --git a/libstdc++-v3/std/cstring b/libstdc++-v3/std/cstring new file mode 100644 index 00000000000..b6a3bd9b53f --- /dev/null +++ b/libstdc++-v3/std/cstring @@ -0,0 +1,3 @@ +#ifndef _CPP_CSTRING +#include <bits/std_cstring.h> +#endif diff --git a/libstdc++-v3/std/ctime b/libstdc++-v3/std/ctime new file mode 100644 index 00000000000..838fd4360ef --- /dev/null +++ b/libstdc++-v3/std/ctime @@ -0,0 +1,3 @@ +#ifndef _CPP_CTIME +#include <bits/std_ctime.h> +#endif diff --git a/libstdc++-v3/std/cwchar b/libstdc++-v3/std/cwchar new file mode 100644 index 00000000000..2cfc330637c --- /dev/null +++ b/libstdc++-v3/std/cwchar @@ -0,0 +1,3 @@ +#ifndef _CPP_CWCHAR +#include <bits/std_cwchar.h> +#endif diff --git a/libstdc++-v3/std/cwctype b/libstdc++-v3/std/cwctype new file mode 100644 index 00000000000..ccd49086901 --- /dev/null +++ b/libstdc++-v3/std/cwctype @@ -0,0 +1,3 @@ +#ifndef _CPP_CWCTYPE +#include <bits/std_cwctype.h> +#endif diff --git a/libstdc++-v3/std/deque b/libstdc++-v3/std/deque new file mode 100644 index 00000000000..2215fd02de1 --- /dev/null +++ b/libstdc++-v3/std/deque @@ -0,0 +1,3 @@ +#ifndef _CPP_DEQUE +#include <bits/std_deque.h> +#endif diff --git a/libstdc++-v3/std/exception b/libstdc++-v3/std/exception new file mode 100644 index 00000000000..06653d17e7e --- /dev/null +++ b/libstdc++-v3/std/exception @@ -0,0 +1,3 @@ +#ifndef _CPP_EXCEPTION +#include <bits/std_exception.h> +#endif diff --git a/libstdc++-v3/std/fstream b/libstdc++-v3/std/fstream new file mode 100644 index 00000000000..afe99e98da9 --- /dev/null +++ b/libstdc++-v3/std/fstream @@ -0,0 +1,3 @@ +#ifndef _CPP_FSTREAM +#include <bits/std_fstream.h> +#endif diff --git a/libstdc++-v3/std/functional b/libstdc++-v3/std/functional new file mode 100644 index 00000000000..700c211ba23 --- /dev/null +++ b/libstdc++-v3/std/functional @@ -0,0 +1,3 @@ +#ifndef _CPP_FUNCTIONAL +#include <bits/std_functional.h> +#endif diff --git a/libstdc++-v3/std/iomanip b/libstdc++-v3/std/iomanip new file mode 100644 index 00000000000..d3c2aa84177 --- /dev/null +++ b/libstdc++-v3/std/iomanip @@ -0,0 +1,3 @@ +#ifndef _CPP_IOMANIP +#include <bits/std_iomanip.h> +#endif diff --git a/libstdc++-v3/std/ios b/libstdc++-v3/std/ios new file mode 100644 index 00000000000..7132eadfa33 --- /dev/null +++ b/libstdc++-v3/std/ios @@ -0,0 +1,3 @@ +#ifndef _CPP_IOS +#include <bits/std_ios.h> +#endif diff --git a/libstdc++-v3/std/iosfwd b/libstdc++-v3/std/iosfwd new file mode 100644 index 00000000000..6a97d3d2d32 --- /dev/null +++ b/libstdc++-v3/std/iosfwd @@ -0,0 +1,3 @@ +#ifndef _CPP_IOSFWD +#include <bits/std_iosfwd.h> +#endif diff --git a/libstdc++-v3/std/iostream b/libstdc++-v3/std/iostream new file mode 100644 index 00000000000..f94fd058a55 --- /dev/null +++ b/libstdc++-v3/std/iostream @@ -0,0 +1,5 @@ +#ifndef _CPP_IOSTREAM +#include <bits/std_iostream.h> +#endif + + diff --git a/libstdc++-v3/std/istream b/libstdc++-v3/std/istream new file mode 100644 index 00000000000..9594261aa61 --- /dev/null +++ b/libstdc++-v3/std/istream @@ -0,0 +1,3 @@ +#ifndef _CPP_ISTREAM +#include <bits/std_istream.h> +#endif diff --git a/libstdc++-v3/std/iterator b/libstdc++-v3/std/iterator new file mode 100644 index 00000000000..eb22c69746c --- /dev/null +++ b/libstdc++-v3/std/iterator @@ -0,0 +1,3 @@ +#ifndef _CPP_ITERATOR +#include <bits/std_iterator.h> +#endif diff --git a/libstdc++-v3/std/limits b/libstdc++-v3/std/limits new file mode 100644 index 00000000000..ba86fe0cba7 --- /dev/null +++ b/libstdc++-v3/std/limits @@ -0,0 +1,3 @@ +#ifndef _CPP_LIMITS +#include <bits/std_limits.h> +#endif diff --git a/libstdc++-v3/std/list b/libstdc++-v3/std/list new file mode 100644 index 00000000000..ea1883639fa --- /dev/null +++ b/libstdc++-v3/std/list @@ -0,0 +1,3 @@ +#ifndef _CPP_LIST +#include <bits/std_list.h> +#endif diff --git a/libstdc++-v3/std/locale b/libstdc++-v3/std/locale new file mode 100644 index 00000000000..5452ae81040 --- /dev/null +++ b/libstdc++-v3/std/locale @@ -0,0 +1,3 @@ +#ifndef _CPP_LOCALE +#include <bits/std_locale.h> +#endif diff --git a/libstdc++-v3/std/map b/libstdc++-v3/std/map new file mode 100644 index 00000000000..16d24f8ee61 --- /dev/null +++ b/libstdc++-v3/std/map @@ -0,0 +1,3 @@ +#ifndef _CPP_MAP +#include <bits/std_map.h> +#endif diff --git a/libstdc++-v3/std/memory b/libstdc++-v3/std/memory new file mode 100644 index 00000000000..f905b4d1d51 --- /dev/null +++ b/libstdc++-v3/std/memory @@ -0,0 +1,3 @@ +#ifndef _CPP_MEMORY +#include <bits/std_memory.h> +#endif diff --git a/libstdc++-v3/std/new b/libstdc++-v3/std/new new file mode 100644 index 00000000000..dac53f8e7fc --- /dev/null +++ b/libstdc++-v3/std/new @@ -0,0 +1,3 @@ +#ifndef _CPP_NEW +#include <bits/std_new.h> +#endif diff --git a/libstdc++-v3/std/numeric b/libstdc++-v3/std/numeric new file mode 100644 index 00000000000..b3817a838cb --- /dev/null +++ b/libstdc++-v3/std/numeric @@ -0,0 +1,3 @@ +#ifndef _CPP_NUMERIC +#include <bits/std_numeric.h> +#endif diff --git a/libstdc++-v3/std/ostream b/libstdc++-v3/std/ostream new file mode 100644 index 00000000000..beed8c58a3d --- /dev/null +++ b/libstdc++-v3/std/ostream @@ -0,0 +1,3 @@ +#ifndef _CPP_OSTREAM +#include <bits/std_ostream.h> +#endif diff --git a/libstdc++-v3/std/queue b/libstdc++-v3/std/queue new file mode 100644 index 00000000000..278270cfdff --- /dev/null +++ b/libstdc++-v3/std/queue @@ -0,0 +1,3 @@ +#ifndef _CPP_QUEUE +#include <bits/std_queue.h> +#endif diff --git a/libstdc++-v3/std/set b/libstdc++-v3/std/set new file mode 100644 index 00000000000..7aa6a388d41 --- /dev/null +++ b/libstdc++-v3/std/set @@ -0,0 +1,3 @@ +#ifndef _CPP_SET +#include <bits/std_set.h> +#endif diff --git a/libstdc++-v3/std/sstream b/libstdc++-v3/std/sstream new file mode 100644 index 00000000000..92c57cb46bf --- /dev/null +++ b/libstdc++-v3/std/sstream @@ -0,0 +1,3 @@ +#ifndef _CPP_SSTREAM +#include <bits/std_sstream.h> +#endif diff --git a/libstdc++-v3/std/stack b/libstdc++-v3/std/stack new file mode 100644 index 00000000000..db3771e7adb --- /dev/null +++ b/libstdc++-v3/std/stack @@ -0,0 +1,3 @@ +#ifndef _CPP_STACK +#include <bits/std_stack.h> +#endif diff --git a/libstdc++-v3/std/stdexcept b/libstdc++-v3/std/stdexcept new file mode 100644 index 00000000000..da75270e682 --- /dev/null +++ b/libstdc++-v3/std/stdexcept @@ -0,0 +1,3 @@ +#ifndef _CPP_STDEXCEPT +#include <bits/std_stdexcept.h> +#endif diff --git a/libstdc++-v3/std/streambuf b/libstdc++-v3/std/streambuf new file mode 100644 index 00000000000..0a58fbdd8ff --- /dev/null +++ b/libstdc++-v3/std/streambuf @@ -0,0 +1,3 @@ +#ifndef _CPP_STREAMBUF +#include <bits/std_streambuf.h> +#endif diff --git a/libstdc++-v3/std/string b/libstdc++-v3/std/string new file mode 100644 index 00000000000..8e3cd42715e --- /dev/null +++ b/libstdc++-v3/std/string @@ -0,0 +1,3 @@ +#ifndef _CPP_STRING +#include <bits/std_string.h> +#endif diff --git a/libstdc++-v3/std/strstream b/libstdc++-v3/std/strstream new file mode 100644 index 00000000000..53267144434 --- /dev/null +++ b/libstdc++-v3/std/strstream @@ -0,0 +1,3 @@ +#ifndef _CPP_STRSTREAM +#include <bits/std_strstream.h> +#endif diff --git a/libstdc++-v3/std/typeinfo b/libstdc++-v3/std/typeinfo new file mode 100644 index 00000000000..26526f33693 --- /dev/null +++ b/libstdc++-v3/std/typeinfo @@ -0,0 +1,3 @@ +#ifndef _CPP_TYPEINFO +#include <bits/std_typeinfo.h> +#endif diff --git a/libstdc++-v3/std/utility b/libstdc++-v3/std/utility new file mode 100644 index 00000000000..924a85398cb --- /dev/null +++ b/libstdc++-v3/std/utility @@ -0,0 +1,3 @@ +#ifndef _CPP_UTILITY +#include <bits/std_utility.h> +#endif diff --git a/libstdc++-v3/std/valarray b/libstdc++-v3/std/valarray new file mode 100644 index 00000000000..e98bbcef168 --- /dev/null +++ b/libstdc++-v3/std/valarray @@ -0,0 +1,3 @@ +#ifndef _CPP_VALARRAY +#include <bits/std_valarray.h> +#endif diff --git a/libstdc++-v3/std/vector b/libstdc++-v3/std/vector new file mode 100644 index 00000000000..c074b77a886 --- /dev/null +++ b/libstdc++-v3/std/vector @@ -0,0 +1,3 @@ +#ifndef _CPP_VECTOR +#include <bits/std_vector.h> +#endif |