Put this line near the top of your header file section in your C source code:
#include <stddef.h>
Note, I am surprised that the C header files unistd.h and string.h are not including stddef.h already.
string.h is required to declare size_t (C99, 7.21.1/1). Bug?
Segher