how can i use POSIX header files in system programming?
i used in C. what are other header files i can used?
how can i use POSIX header files in system programming? i used in C.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
POSIX is a standard implemented by Unix-like systems to give code portability between similar systems. You include their headers like you do any other C header. These headers should be available in the libraries on your Unix-like machine. You can then have access to the data structures in them.
Here is a (partial?) list of POSIX headers:
http://en.wikipedia.org/wiki/C_POSIX_library
Hopefully this helps. Your question is very poorly worded.