krz/skunky-art
Alternative privacy frontend for DeviantArt.
clone: git clone https://gitbay.org/krz/skunky-art.git
v1.4.0: app/stat-darwin.go · raw
1//go:build darwin
2
3package app
4
5import (
6 "syscall"
7 "time"
8)
9
10// macOS names the ctime field Ctimespec rather than Ctim, so it needs its own
11// variant to let the project build and test on a Mac (deploys are Linux).
12func statTime(stat *syscall.Stat_t) int64 {
13 return time.Unix(stat.Ctimespec.Unix()).UnixMilli()
14}