stddef.h 147 B

1234567891011
  1. #ifdef STDDEF_H
  2. #define STDDEF_H
  3. typedef int64_t intptr_t;
  4. typedef int64_t ptrdiff_t;
  5. typedef uint16_t wchar_t;
  6. #define NULL ((void *)0)
  7. #endif