diff --git a/libethash/io_posix.c b/libethash/io_posix.c index 1fe82973f..80046252d 100644 --- a/libethash/io_posix.c +++ b/libethash/io_posix.c @@ -26,10 +26,6 @@ #include #include #include -#if defined(__APPLE__) -#include -#include -#endif FILE* ethash_fopen(char const* file_name, char const* mode) { @@ -93,14 +89,6 @@ bool ethash_get_default_dirname(char* strbuf, size_t buffsize) static const char dir_suffix[] = ".ethash/"; strbuf[0] = '\0'; char* home_dir = getenv("HOME"); -#if defined(__APPLE__) - if (!home_dir || strlen(home_dir) == 0) - { - struct passwd* pwd = getpwuid(getuid()); - if (pwd) - home_dir = pwd->pw_dir; - } -#endif size_t len = strlen(home_dir); if (!ethash_strncat(strbuf, buffsize, home_dir, len)) {