AI 145716: am: CL 145714 Added cstring wrapper around string.h.

In new, include cstddef which declares std::size_t.
  Original author: niko

Automated import of CL 145716
This commit is contained in:
Niko Catania
2009-04-10 10:54:03 -07:00
committed by The Android Open Source Project
parent c2fc66958c
commit 69b1a8ac50
4 changed files with 161 additions and 3 deletions

View File

@@ -1,11 +1,10 @@
/* -*- c++ -*- */
#ifndef __NEW__
#define __NEW__
#include <stddef.h>
#include <cstddef>
namespace std {
using ::size_t;
struct nothrow_t {};
extern const nothrow_t nothrow;
}