I know that the system calls are not in the C standard Library. Is there any library (some sort of a system library) where the system calls are?
If there is such a l
The library is the standard C library (libc). This is normally glibc but some embedded linuxes will use musl and Android uses bionic.
Linux as a platform is fairly unique in that the kernel/user interface is rather stable so different c libraries can be used.
libc library will be linked in automatically as a shared library by your toolchain unless you tell it not to.