I was trying to look into the implementation of GetVersion function in kernel32.dll.
I was surprised to see that the GetVersion thunk is issuing a jump to API-MS-WIN-CORE-SYSINFO-L1-1-0.DLL::GetVersion, and in turn API-MS-WIN-CORE-SYSINFO-L1-1-0.DLL::GetVersion is pointing(forwarder) back to KERNEL32.DLL::GetVersion
Any idea why is it so? So where is the real implementation of GetVersion?

