watcher_unsupported.go (8 lines of code) (raw):
// +build !go1.3 plan9 solaris
package main
import (
"log"
)
func WatchForUpdates(filename string, done <-chan bool, action func()) {
log.Printf("file watching not implemented on this platform")
go func() { <-done }()
}