cstddef 162 B

1234567891011
  1. #pragma once
  2. #include_next <cstddef>
  3. #if defined(HAVE_STD_NULLPTR_T) && !HAVE_STD_NULLPTR_T
  4. namespace std {
  5. typedef decltype(nullptr) nullptr_t;
  6. }
  7. #endif