What does getpwuid() say on Windows?
Not implemented :-)
You can't use getpwuid in Windows. The usual portable implementation checks for running under Windows and uses $ENV{'HOMEDRIVE'} . $ENV{'HOMEPATH'} if it is instead of $ENV{'HOME'}, being careful about the former using '\' separators instead of '/'.
-- sidney
