summaryrefslogtreecommitdiffstats
path: root/unix/tclUnixPort.h
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2018-05-08 15:00:40 (GMT)
committerdgp <dgp@users.sourceforge.net>2018-05-08 15:00:40 (GMT)
commit7f26fedbccc3c9f7908417c0abe1cceae115a237 (patch)
treef7d5730eb82f0c65685199459df425f653924f8f /unix/tclUnixPort.h
parent1f71d7079b597878c3312bb94811772cb708e3f8 (diff)
parent47e9dbdc37939a6e874afd15d6586864649f23c7 (diff)
downloadtcl-7f26fedbccc3c9f7908417c0abe1cceae115a237.zip
tcl-7f26fedbccc3c9f7908417c0abe1cceae115a237.tar.gz
tcl-7f26fedbccc3c9f7908417c0abe1cceae115a237.tar.bz2
merge 8.6
Diffstat (limited to 'unix/tclUnixPort.h')
-rw-r--r--unix/tclUnixPort.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/unix/tclUnixPort.h b/unix/tclUnixPort.h
index 86f1dd0..8e71b3a 100644
--- a/unix/tclUnixPort.h
+++ b/unix/tclUnixPort.h
@@ -59,9 +59,15 @@
#ifdef HAVE_STRUCT_DIRENT64
typedef struct dirent64 Tcl_DirEntry;
# define TclOSreaddir readdir64
+# define TclOSopendir opendir64
+# define TclOSrewinddir rewinddir64
+# define TclOSclosedir closedir64
#else
typedef struct dirent Tcl_DirEntry;
# define TclOSreaddir readdir
+# define TclOSopendir opendir
+# define TclOSrewinddir rewinddir
+# define TclOSclosedir closedir
#endif
#ifdef HAVE_TYPE_OFF64_T