Is size_t only in C++ standard or C standard as well?

I cannot find a C header in the "/usr/include" tree that defines size_t.

If it is not in the C std, is GCC just doing some magic to make things work?

Thanks, Chenz

link|improve this question

68% accept rate
1  
Why do you think this should be in /usr/include? – anon Mar 30 '10 at 18:40
Neil is right, you're looking it the wrong place. C++ headers are in /usr/include/c++/${gcc-version} – Brendan Long Mar 31 '10 at 8:32
feedback

6 Answers

up vote 2 down vote accepted

From C99 draft:

7.17 Common definitions <stddef.h>

  1. The following types and macros are defined in the standard header <stddef.h>. Some are also defined in other headers, as noted in their respective subclauses.

  2. The types are [-snip-]

    size_t
    

    which is the unsigned integer type of the result of the sizeof operator; [-snip-]

link|improve this answer
1  
The "other headers" part applies to size_t, it's also declared in <stdlib.h> (see 7.20/2). – sth Mar 30 '10 at 18:46
feedback

size_t is defined in both <stddef.h> and <stdlib.h>

link|improve this answer
feedback

size_t is from the C standard library

It is declared in

#include <stddef.h>  //For C
#include <cstddef>   //For C++
link|improve this answer
feedback

size_t is in stdlib.h for C (or cstdlib.h in C++).

link|improve this answer
feedback

It is defined in string.h in ansi c.

link|improve this answer
feedback

$ grep -R -P "typedef.*\s+size_t;" /usr/include/ 2> /dev/null

will give you a list of files that define size_t

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.