cstddef 209 B

123456789101112131415
  1. #ifndef __GBLIBCPP_CSTDDEF__
  2. #define __GBLIBCPP_CSTDDEF__
  3. #undef NULL
  4. #define NULL (nullptr)
  5. namespace std {
  6. using nullptr_t = decltype(nullptr);
  7. using size_t = __SIZE_TYPE__;
  8. }; // namespace std
  9. #endif