summaryrefslogtreecommitdiff
path: root/rt/stddef.h
blob: 83d9957b4affc33d540d4b388c80d9031d553cd8 (plain)
1
2
3
4
5
6
7
8
#ifndef RT_STDDEF_H
#define RT_STDDEF_H

#define nil ((void*)0)

#define ALIGN_UP(X, F) ((X) - (X) % (F) + (F))

#endif