8 lines
158 B
C
8 lines
158 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#include "./sys/types.h"
|
||
|
|
|
||
|
|
#define NULL 0
|
||
|
|
|
||
|
|
typedef __PTRDIFF_TYPE__ ptrdiff_t; // Signed integer type of the result of subtracting two pointers.
|