Tcl Source Code

Check-in [a2c3b92118]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:<sys/stat.h> inclusion is only needed when compiling for Win32, don't bother for other platforms.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | core-8-4-branch
Files: files | file ages | folders
SHA1: a2c3b92118ce055a88c6eef49452ec733a2f0dfa
User & Date: jan.nijtmans 2013-05-17 15:12:27
Context
2013-05-19
13:36
Fix for FreeBSD, and remove support for older FreeBSD versions. Patch by Pietro Cerutti. check-in: 3711f9d94a user: jan.nijtmans tags: core-8-4-branch
2013-05-17
15:12
<sys/stat.h> inclusion is only needed when compiling for Win32, don't bother for other platforms. check-in: a2c3b92118 user: jan.nijtmans tags: core-8-4-branch
15:08
- eliminate compiler warning when compiling with Visual Studio. - Make sure that _ftime() from msvcr... check-in: 62fbe65d17 user: jan.nijtmans tags: core-8-4-branch
Changes
Hide Diffs Unified Diffs Ignore Whitespace Patch

Changes to generic/tclBasic.c.

13
14
15
16
17
18
19

20
21
22
23
24
25
26
27
28
29
 *
 * See the file "license.terms" for information on usage and redistribution
 * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
 */

#if defined(_WIN32) && !defined(_WIN64)
#   define _USE_32BIT_TIME_T

#endif

#include <sys/stat.h>
#include "tclInt.h"
#include "tclCompile.h"
#ifndef TCL_GENERIC_ONLY
#   include "tclPort.h"
#endif

/*







>


<







13
14
15
16
17
18
19
20
21
22

23
24
25
26
27
28
29
 *
 * See the file "license.terms" for information on usage and redistribution
 * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
 */

#if defined(_WIN32) && !defined(_WIN64)
#   define _USE_32BIT_TIME_T
#   include <sys/stat.h>
#endif


#include "tclInt.h"
#include "tclCompile.h"
#ifndef TCL_GENERIC_ONLY
#   include "tclPort.h"
#endif

/*