Not needed anymore.

This commit is contained in:
Moritz Bunkus 2004-02-10 18:51:32 +00:00
parent c884ee4249
commit c122009063

View File

@ -1,12 +0,0 @@
#include <stdio.h>
#include <unistd.h>
int main() {
char buffer[8192];
buffer[8191] = 0;
getcwd(buffer, 8191);
puts(buffer);
return 0;
}