This is the mail archive of the
gcc-help@gcc.gnu.org
mailing list for the GCC project.
Re: size_t problem in include files
- From: Eljay Love-Jensen <eljay at adobe dot com>
- To: Tahir Abdullah <tahir_1967 at hotmail dot com>, gcc-help at gcc dot gnu dot org
- Date: Mon, 06 Dec 2004 06:12:26 -0600
- Subject: Re: size_t problem in include files
- References: <BAY20-F30690D7DC4CBB7574B04F6FFB40@phx.gbl>
Hi Tahir,
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.
HTH,
--Eljay