Utilities for internal use.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
144 B

  1. package internal
  2. import (
  3. "fmt"
  4. "os"
  5. )
  6. func ErrQuit(s string, args ...interface{}) {
  7. fmt.Fprintf(os.Stderr, s+"\n", args...)
  8. os.Exit(1)
  9. }