//go:build !windows package paths const ( /* MaxSymlinkLevel is hardcoded into the kernel for macOS, BSDs and Linux. It's unlikely to change. Thankfully, it's the same on all of them. On all, it's defined as MAXSYMLINKS in the following headers: macOS (no, macOS is not a BSD; no, it is not FreeBSD; yes, I *will* fight you on it and win): sys/param.h BSDs: sys/sys/param.h Linux: include/linux/namei.h */ MaxSymlinkLevel uint = 40 )