diff options
Diffstat (limited to '')
-rw-r--r-- | tls/compat/getuid.c | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/tls/compat/getuid.c b/tls/compat/getuid.c deleted file mode 100644 index 9a46317..0000000 --- a/tls/compat/getuid.c +++ /dev/null | |||
@@ -1,18 +0,0 @@ | |||
1 | /* | ||
2 | * Public domain | ||
3 | * | ||
4 | * Kinichiro Inoguchi <inoguchi@openbsd.org> | ||
5 | */ | ||
6 | |||
7 | #ifdef _WIN32 | ||
8 | |||
9 | #include <unistd.h> | ||
10 | |||
11 | uid_t | ||
12 | getuid(void) | ||
13 | { | ||
14 | /* Windows fstat sets 0 as st_uid */ | ||
15 | return 0; | ||
16 | } | ||
17 | |||
18 | #endif | ||