Whole document tree
7.8 Standard LibrariesGCC by itself attempts to be what the ISO/ANSI C standard calls a conforming freestanding implementation. This means all ANSI C language features are available, as well as the contents of `float.h', `limits.h', `stdarg.h', and `stddef.h'. The rest of the C library is supplied by the vendor of the operating system. If that C library doesn't conform to the C standards, then your programs might get warnings (especially when using `-Wall') that you don't expect.
For example, the
If you need a Standard compliant library, then you need to find one, as
GCC does not provide one. The GNU C library (called This document was generated by root on January, 30 2002 using texi2html |