mirror of
https://github.com/reactos/reactos.git
synced 2024-11-10 00:34:39 +00:00
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;
|
|
}
|