Subversion Repositories Tewi

Rev

Rev 292 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 292 Rev 315
Line 1... Line 1...
1
/* $Id: dir.c 292 2024-10-09 10:49:15Z nishi $ */
1
/* $Id: dir.c 315 2024-10-14 10:01:02Z nishi $ */
2
 
2
 
3
#include "cm_dir.h"
3
#include "cm_dir.h"
4
 
4
 
5
#include "cm_string.h"
5
#include "cm_string.h"
6
 
6
 
7
#include <sys/stat.h>
7
#include <sys/stat.h>
8
#if !defined(_MSC_VER) && !defined(__WATCOMC__)
8
#if !defined(_MSC_VER) && !defined(__WATCOMC__)
9
#include <dirent.h>
9
#include <dirent.h>
-
 
10
#elif defined(__NETWARE__)
-
 
11
#include <dirent.h>
10
#elif defined(__WATCOMC__) || defined(_MSC_VER)
12
#elif defined(__WATCOMC__) || defined(_MSC_VER)
11
#include <direct.h>
13
#include <direct.h>
12
#endif
14
#endif
13
#ifdef _MSC_VER
15
#ifdef _MSC_VER
14
#include <windows.h>
16
#include <windows.h>