Unix-like systems typically have a C library in
shared library form, but the header files (and compiler toolchain) may be absent from an installation so C development may not be possible. The C library is considered part of the operating system on Unix-like systems; in addition to functions specified by the C standard, it includes other functions that are part of the operating system API, such as functions specified in the
POSIX standard. The C library functions, including the ISO C standard ones, are widely used by programs, and are regarded as if they were not only an implementation of something in the C language, but also
de facto part of the operating system interface. Unix-like operating systems generally cannot function if the C library is erased. This is true for applications which are dynamically as opposed to statically linked. Further, the kernel itself (at least in the case of Linux) operates independently of any libraries. On Microsoft Windows, the core system dynamic libraries (
DLLs) provide an implementation of the C standard library for the
Microsoft Visual C++ compiler v6.0; the C standard library for newer versions of the Microsoft Visual C++ compiler is provided by each compiler individually, as well as
redistributable packages. Compiled applications written in C are either statically linked with a C library, or linked to a dynamic version of the library that is shipped with these applications, rather than relied upon to be present on the targeted systems. Functions in a compiler's C library are not regarded as interfaces to Microsoft Windows. Many C library implementations exist, provided with both various operating systems and C compilers. Some of the popular implementations are the following: • The
BSD libc, various implementations distributed with
BSD-derived operating systems •
GNU C Library (glibc), used in
GNU Hurd,
GNU/kFreeBSD, and most
Linux distributions •
Microsoft C run-time library, part of
Microsoft Visual C++. There are two versions of the library: the formerly-redistributable (until Visual Studio 2013) MSVCRT which is not compliant to the
C99 standard, and the newer UCRT (Universal C Run Time) shipped as part of Windows 10 and 11 which is C99-compliant *
dietlibc, an alternative small implementation of the C standard library (MMU-less) •
μClibc, a C standard library for embedded
μClinux systems (MMU-less) •
uclibc-ng, an embedded C library, fork of μClibc, still maintained, with
memory management unit (MMU) support •
Newlib, a C standard library for embedded systems (MMU-less) and used in the
Cygwin GNU distribution for Windows •
klibc, primarily for booting Linux systems •
musl, another lightweight C standard library implementation for Linux systems •
Bionic, originally developed by Google for the Android embedded system operating system, derived from BSD libc • [https://keithp.com/picolibc picolibc, developed by
Keith Packard, targeting small embedded systems with limited RAM, based on code from
Newlib and AVR Libc
Compiler built-in functions Some compilers (for example,
GCC) provide built-in versions of many of the functions in the C standard library; that is, the implementations of the functions are written into the compiled
object file, and the program calls the built-in versions instead of the functions in the C library
shared object file. This reduces function-call overhead, especially if function calls are replaced with
inline variants, and allows other forms of
optimization (as the compiler knows the
control-flow characteristics of the built-in variants), but may cause confusion when debugging (for example, the built-in versions cannot be replaced with
instrumented variants). However, the built-in functions must behave like ordinary functions in accordance with ISO C. The main implication is that the program must be able to create a pointer to these functions by taking their address, and invoke the function by means of that pointer. If two pointers to the same function are derived in two different translation units in the program, these two pointers must compare equal; that is, the address comes by resolving the name of the function, which has external (program-wide) linkage.
Linking, libm Under FreeBSD and glibc, some functions such as sin() are not linked in by default and are instead bundled in the mathematical library
libm. If any of them are used, the linker must be given the directive -lm. POSIX requires that the c99 compiler supports -lm, and that the functions declared in the headers , , and are available for linking if -lm is specified, but does not specify if the functions are linked by default. musl satisfies this requirement by putting everything into a single libc library and providing an empty libm.
Detection According to the C standard the macro __STDC_HOSTED__ shall be defined to 1 if the implementation is hosted. A hosted implementation has all the headers specified by the C standard. An implementation can also be
freestanding which means that these headers will not be present. If an implementation is
freestanding, it shall define __STDC_HOSTED__ to 0. == Problems and workarounds ==