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