Implementing stddef.h
Currently, including stddef.h at least on some linux distros will result in an error, because that header is usually not present in /usr/include and most modern compilers ship it with them (e.g. gcc, clang).
Thus for support of headers like stdlib.h there needs to be an implementation for stddef.h, it shouldn't be as much of a problem as inrcc does provide macros to help with that task, for example the __SIZE_TYPE__ macro for size_t.
Implementing
stddef.hCurrently, including
stddef.hat least on some linux distros will result in an error, because that header is usually not present in/usr/includeand most modern compilers ship it with them (e.g.gcc,clang).Thus for support of headers like
stdlib.hthere needs to be an implementation forstddef.h, it shouldn't be as much of a problem asinrccdoes provide macros to help with that task, for example the__SIZE_TYPE__macro forsize_t.