mirror of
https://github.com/azahar-emu/ext-libressl-portable
synced 2025-11-07 07:30:06 +01:00
19 lines
189 B
C
19 lines
189 B
C
/*
|
|
* Public domain
|
|
*
|
|
* Kinichiro Inoguchi <inoguchi@openbsd.org>
|
|
*/
|
|
|
|
#ifdef _WIN32
|
|
|
|
#include <unistd.h>
|
|
|
|
uid_t
|
|
getuid(void)
|
|
{
|
|
/* Windows fstat sets 0 as st_uid */
|
|
return 0;
|
|
}
|
|
|
|
#endif
|