summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2014-02-04 21:51:32 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2014-02-04 21:51:32 (GMT)
commitc7569e1c35930b65d7242445d29707703efbe040 (patch)
tree0abec62730bd0a06a26e86501deea6044e1b6bd0
parentfc5e6debdee34caf68237de6750c1bb4c230e2bc (diff)
downloadtcl-c7569e1c35930b65d7242445d29707703efbe040.zip
tcl-c7569e1c35930b65d7242445d29707703efbe040.tar.gz
tcl-c7569e1c35930b65d7242445d29707703efbe040.tar.bz2
Satisfy required position of __stdcall from VC++
-rw-r--r--unix/tclUnixInit.c4
-rw-r--r--win/tclWinInit.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/unix/tclUnixInit.c b/unix/tclUnixInit.c
index 7e0b19a..a8cd00d 100644
--- a/unix/tclUnixInit.c
+++ b/unix/tclUnixInit.c
@@ -930,8 +930,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);
diff --git a/win/tclWinInit.c b/win/tclWinInit.c
index f49edf0..2f3c7e8 100644
--- a/win/tclWinInit.c
+++ b/win/tclWinInit.c
@@ -574,8 +574,8 @@ TclpSetVariables(
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);