1// ISO C++ standards definitions 2 3#include <stddef.h> 4 5#pragma once 6 7namespace std 8{ 9 using ::ptrdiff_t; 10 using ::size_t; 11} 12