stddef.h 226 B

12345678910111213
  1. #pragma once
  2. #include <libc/sys/types.h>
  3. #ifdef __cplusplus
  4. #define NULL 0
  5. #else
  6. #define NULL ((void *)0)
  7. #endif
  8. typedef __PTRDIFF_TYPE__ ptrdiff_t; // Signed integer type of the result of subtracting two pointers.