reactos/include/c++/cstddef
Jérôme Gardou 8c6671477e [HEADERS]
- start using our own c++ headers and forward stlport ones to them in msvc build.
 - fix fpecode declaration for MSVC.
[CMAKE]
 - cardlib is a cpp library.
Now stlport compiles with msvc.

svn path=/branches/cmake-bringup/; revision=49552
2010-11-10 22:20:05 +00:00

12 lines
126 B
Plaintext

// ISO C++ standards definitions
#include <stddef.h>
#pragma once
namespace std
{
using ::ptrdiff_t;
using ::size_t;
}