/* * Public domain * * Kinichiro Inoguchi */ #ifdef _WIN32 #include uid_t getuid(void) { /* Windows fstat sets 0 as st_uid */ return 0; } #endif