cstddef 246 B

1234567891011121314151617
  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. enum class byte : unsigned char {};
  9. }; // namespace std
  10. #endif