mirror of
https://github.com/reactos/reactos.git
synced 2024-11-06 22:52:46 +00:00
527f2f9057
* Create a branch for some evul shell experiments. svn path=/branches/shell-experiments/; revision=61927
11 lines
137 B
Text
11 lines
137 B
Text
// ISO C++ standards definitions
|
|
|
|
#include <stddef.h>
|
|
|
|
#pragma once
|
|
|
|
namespace std
|
|
{
|
|
using ::ptrdiff_t;
|
|
using ::size_t;
|
|
}
|