The glamourous AI coding agent for your favourite terminal 💘
1//go:build !(linux || darwin) || sqlite3_flock 2 3package vfs 4 5import "os" 6 7func osSync(file *os.File, _ /*fullsync*/, _ /*dataonly*/ bool) error { 8 return file.Sync() 9}