summaryrefslogtreecommitdiff
path: root/LibC/stddef.h
blob: 73f82c14894abb726868172c796e5e6ca70ee17a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma once

#include <sys/cdefs.h>
#include <sys/types.h>

#ifdef __cplusplus
#    define NULL nullptr
#else
#    define NULL ((void*)0)
#endif

typedef __PTRDIFF_TYPE__ ptrdiff_t;
typedef __SIZE_TYPE__ size_t;