diff options
| author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2018-05-11 07:53:20 (GMT) |
|---|---|---|
| committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2018-05-11 07:53:20 (GMT) |
| commit | 7bf3f83abd5bc0e24dbd3f02765b7e86d7ba1fa7 (patch) | |
| tree | 961828337b31de8c5df029ec0979f32f1a7e9f37 /unix/tclUnixPort.h | |
| parent | f5e87513071af9794d48e1b5c1b106343f4bca1f (diff) | |
| download | tcl-7bf3f83abd5bc0e24dbd3f02765b7e86d7ba1fa7.zip tcl-7bf3f83abd5bc0e24dbd3f02765b7e86d7ba1fa7.tar.gz tcl-7bf3f83abd5bc0e24dbd3f02765b7e86d7ba1fa7.tar.bz2 | |
Rename Tcl_Dir to TclDIR, making it clear that this macro is not part of the public API
Diffstat (limited to 'unix/tclUnixPort.h')
| -rw-r--r-- | unix/tclUnixPort.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/tclUnixPort.h b/unix/tclUnixPort.h index 58509b0..a248213 100644 --- a/unix/tclUnixPort.h +++ b/unix/tclUnixPort.h @@ -58,14 +58,14 @@ */ #ifdef HAVE_STRUCT_DIRENT64 -typedef DIR64 Tcl_Dir; +typedef DIR64 TclDIR; typedef struct dirent64 Tcl_DirEntry; # define TclOSreaddir readdir64 # define TclOSopendir opendir64 # define TclOSrewinddir rewinddir64 # define TclOSclosedir closedir64 #else -typedef DIR Tcl_Dir; +typedef DIR TclDIR; typedef struct dirent Tcl_DirEntry; # define TclOSreaddir readdir # define TclOSopendir opendir |
