diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2014-02-04 21:52:46 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2014-02-04 21:52:46 (GMT) |
commit | d16daeb28a40a95fa54d322134a76c64023beda6 (patch) | |
tree | 13c4782f793f326f40fb1eed40e22561bf6b2739 /unix | |
parent | 20c43bb48a2e8a63a84389e3987f43e399522e93 (diff) | |
parent | 7986522df51e69499b127ab05a24f697b5ac0849 (diff) | |
download | tcl-d16daeb28a40a95fa54d322134a76c64023beda6.zip tcl-d16daeb28a40a95fa54d322134a76c64023beda6.tar.gz tcl-d16daeb28a40a95fa54d322134a76c64023beda6.tar.bz2 |
Satisfy required position of __stdcall from VC++
Diffstat (limited to 'unix')
-rw-r--r-- | unix/tclUnixInit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/tclUnixInit.c b/unix/tclUnixInit.c index 7fe511b..1617cba 100644 --- a/unix/tclUnixInit.c +++ b/unix/tclUnixInit.c @@ -866,8 +866,8 @@ TclpSetVariables( unameOK = 1; if (!osInfoInitialized) { HANDLE handle = LoadLibraryW(L"NTDLL"); - __stdcall int(*getversion)(void *) = - (__stdcall int(*)(void *))GetProcAddress(handle, "RtlGetVersion"); + int(__stdcall *getversion)(void *) = + (int(__stdcall *)(void *))GetProcAddress(handle, "RtlGetVersion"); osInfo.dwOSVersionInfoSize = sizeof(OSVERSIONINFOW); if (!getversion || getversion(&osInfo)) { GetVersionExW(&osInfo); |