mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 12:26:32 +00:00
12 lines
126 B
Plaintext
12 lines
126 B
Plaintext
// ISO C++ standards definitions
|
|
|
|
#include <stddef.h>
|
|
|
|
#pragma once
|
|
|
|
namespace std
|
|
{
|
|
using ::ptrdiff_t;
|
|
using ::size_t;
|
|
}
|