summaryrefslogtreecommitdiff
path: root/minilib/stddef.h
blob: 8ee80400a003874e16bfee6735056e7fb5d3ed4c (plain)
1
2
3
4
5
6
7
8
9
10
#pragma once

/* TODO: preprocess just to define the NULL pointer?! */
#define NULL ( (void *) 0)

/* TODO: drawn in by using some functions from the host */
typedef int size_t;

/* TODO: drawn in by using some functions from the host */
typedef int wchar_t;