cstddef 322 B

1234567891011121314151617181920
  1. #ifndef __GBLIBCPP_CSTDDEF__
  2. #define __GBLIBCPP_CSTDDEF__
  3. #define __GBLIBCPP_CONSTEXPR constexpr
  4. #undef NULL
  5. #define NULL (nullptr)
  6. namespace std {
  7. using nullptr_t = decltype(nullptr);
  8. using size_t = __SIZE_TYPE__;
  9. using ptrdiff_t = __PTRDIFF_TYPE__;
  10. enum class byte : unsigned char {};
  11. }; // namespace std
  12. #endif