I'm a little confused by C standard lib and C POSIX lib, because I found that, many header files defined in C POSIX lib are right in C standard lib.
So, I assume that, C standard lib is a lib defined by ANSI C organization, and there are different implementation on different platforms (Win32/Unix-like), and C POSIX lib is just a implementation for C standard lib on Unix-like OS, right?
But C POSIX lib contains some headers not specified in C standard lib, such as <sys/types.h>, <sys/wait.h>, <pthread.h>.
Take <pthread.h> as an example, I presume its C standard lib counterpart is <threads.h>, then if I want to write an multi-threading program on linux, which header file should I include, <pthread.h> or <threads.h>?