2018-02-25 01:59:39 +09:00
|
|
|
/*
|
|
|
|
* Public domain
|
|
|
|
*
|
|
|
|
* Kinichiro Inoguchi <inoguchi@openbsd.org>
|
|
|
|
*/
|
|
|
|
|
2018-03-18 00:38:14 +09:00
|
|
|
#ifdef _WIN32
|
|
|
|
|
2018-02-25 01:59:39 +09:00
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
uid_t
|
|
|
|
getuid(void)
|
|
|
|
{
|
|
|
|
/* Windows fstat sets 0 as st_uid */
|
|
|
|
return 0;
|
|
|
|
}
|
2018-03-18 00:38:14 +09:00
|
|
|
|
|
|
|
#endif
|