You want:
#include <fcntl.h> /* For O_RDWR */
#include <unistd.h> /* For open(), creat() */
Also, note that, as @R Samuel Klatchko writes, these are not "libraries". What #include
does is inserts a file into your code verbatim. It just so happens that the standard header fcntl.h
will have a line like:
#define O_RDWR <some value here>
And unistd.h
will have lines like:
int open(const char *, int, ...);
int creat(const char *, mode_t);
In other words, function prototypes, which informs the compiler that this function exists somewhere and optionally what its parameters look like.
The later linking step will then look for these functions in libraries; that is where the term "library" comes in. Most typically these functions will exist in a library called libc.so
. You can think of your compiler inserting the flag -lc
(link to libc
) on your behalf.
Also, these are not "C++" but rather POSIX.