#include <win_etpan.h>

DIR *opendir (const char *__name) {
#ifdef _DEBUG
	fprintf( stderr, "opendir inimplemented\n");
#endif
	return NULL;
}

int closedir (DIR *__dirp) {
#ifdef _DEBUG
	fprintf( stderr, "closedir inimplemented\n");
#endif
	return 0;
}

struct dirent *readdir (DIR *__dirp) {
#ifdef _DEBUG
	fprintf( stderr, "readdir inimplemented\n");
#endif
	return NULL;
}


syntax highlighted by Code2HTML, v. 0.9.1