mirror of
https://github.com/reactos/reactos.git
synced 2024-11-05 22:26:39 +00:00
8c6671477e
- 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
11 lines
126 B
Text
11 lines
126 B
Text
// ISO C++ standards definitions
|
|
|
|
#include <stddef.h>
|
|
|
|
#pragma once
|
|
|
|
namespace std
|
|
{
|
|
using ::ptrdiff_t;
|
|
using ::size_t;
|
|
}
|