I'm sure I'm missing something basic here, but I cannot get this to compile. Using codeblocks 10.05 with mingw build of gcc 4.4.1. I've included unistd.h and tried replacing MAXPATHLEN with PATH_MAX but every time, it gives me:
error: 'MAXPATHLEN' was not declared in this scope
or
error: 'PATH_MAX' was not declared in this scope
#include <iostream>
#include <unistd.h>
int main()
{
char temp[MAXPATHLEN];
return 0;
}
I've also tried
#include "unistd.h"
to no avail.