summaryrefslogtreecommitdiffstats
path: root/unix/tclUnixPort.h
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2018-05-08 15:22:49 (GMT)
committerdgp <dgp@users.sourceforge.net>2018-05-08 15:22:49 (GMT)
commit56af8c1770e00895a8862d52563e3942dfb3b2df (patch)
tree22622d4db3cbabf4dc2c39d34b27aa053f7bdbf3 /unix/tclUnixPort.h
parent97b08c9a24dd40233c45c0637be7370972ec7b0c (diff)
parent7f26fedbccc3c9f7908417c0abe1cceae115a237 (diff)
downloadtcl-56af8c1770e00895a8862d52563e3942dfb3b2df.zip
tcl-56af8c1770e00895a8862d52563e3942dfb3b2df.tar.gz
tcl-56af8c1770e00895a8862d52563e3942dfb3b2df.tar.bz2
merge 8.7
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