mirror of
https://github.com/reactos/reactos.git
synced 2025-01-05 22:12:46 +00:00
12 lines
137 B
Text
12 lines
137 B
Text
|
// ISO C++ standards definitions
|
||
|
|
||
|
#include <stddef.h>
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
namespace std
|
||
|
{
|
||
|
using ::ptrdiff_t;
|
||
|
using ::size_t;
|
||
|
}
|