//go:build windows package disk // madviseSequential is a no-op on Windows. // Windows file mappings don't have a direct equivalent to MADV_SEQUENTIAL // in the same way. Sequential access hints are better done via // FILE_FLAG_SEQUENTIAL_SCAN at file open time (future improvement possible). func madviseSequential(b []byte) error { return nil }