hare

[hare] The Hare programming language
git clone https://git.torresjrjr.com/hare.git
Log | Files | Refs | README | LICENSE

+freebsd.ha (342B)


      1 // SPDX-License-Identifier: MPL-2.0
      2 // (c) Hare authors <https://harelang.org>
      3 
      4 def LOCALTIME_PATH: str = "/etc/localtime";
      5 def TZDB_PATH: str = "/usr/share/zoneinfo/";
      6 
      7 // The filepath of the system's "leap-seconds.list" file, which contains UTC/TAI
      8 // leap second data.
      9 export def UTC_LEAPSECS_PATH: str = "/var/db/ntpd.leap-seconds.list";