summaryrefslogtreecommitdiffstats
path: root/libstdc++/include/cstddef
diff options
context:
space:
mode:
authorNiko Catania <>2009-04-08 09:01:36 -0700
committerThe Android Open Source Project <initial-contribution@android.com>2009-04-08 09:01:36 -0700
commit00a18f62a7c97299cea017578ec7ec179215492b (patch)
treefbe60e1001658ca6848940d460664a56f8949865 /libstdc++/include/cstddef
parent88f8a4ab8534cb21280f8aa0bf557f81ba4e31fa (diff)
downloadbionic-00a18f62a7c97299cea017578ec7ec179215492b.zip
bionic-00a18f62a7c97299cea017578ec7ec179215492b.tar.gz
bionic-00a18f62a7c97299cea017578ec7ec179215492b.tar.bz2
AI 145059: (Almost) final set of wrapper around the C headers for stdc++ and their tests.
The only one left is cstring. * bionic/libstdc++/include/cstdlib: * bionic/libstdc++/include/cstdio: * bionic/libstdc++/include/cstdint: * bionic/libstdc++/include/csignal: * bionic/libstdc++/include/csetjmp: Added header file. Checks the bionic headers file were picked up instead of the host ones. Added test for new header files * system/extras/tests/bionic/libstdc++/Android.mk: Added tests for the new header files. EXTRA_CFLAGS: include the bionic header files. BUG=1601432 Automated import of CL 145059
Diffstat (limited to 'libstdc++/include/cstddef')
-rw-r--r--libstdc++/include/cstddef4
1 files changed, 2 insertions, 2 deletions
diff --git a/libstdc++/include/cstddef b/libstdc++/include/cstddef
index 31c1bd1..fc1ca9d 100644
--- a/libstdc++/include/cstddef
+++ b/libstdc++/include/cstddef
@@ -39,8 +39,8 @@
#include <stddef.h>
namespace std {
- using ::ptrdiff_t;
- using ::size_t;
+using ::ptrdiff_t;
+using ::size_t;
} // namespace std
#endif // BIONIC_LIBSTDCPP_INCLUDE_CSTDDEF__