I created a new c++-project in Eclipse.
This is the code:
#include <argp.h>
#include <iostream>
using namespace std;
int main() {
// ...
return 0;
}
However I get the following compiler-error:
fatal error: argp.h: No such file or directory
Is argp.h
part of the compiler? I´m using MinGW-GCC-toolchain in Eclipse.