#define __PTIME_TZDIR "/usr/share/zoneinfo"

namespace panda { namespace time {

static bool get_os_localzone_name (char* lzname) {
    if (
        tz_from_env(lzname, "SYS$TIMEZONE_RULE") ||
        tz_from_env(lzname, "SYS$TIMEZONE_NAME") ||
        tz_from_env(lzname, "UCX$TZ")            ||
        tz_from_env(lzname, "TCPIP$TZ")
    ) return true;
    return false;
}

}}

#include "scan_files_unix.icc"