package kernel

// (c) Christian Maurer   v. 110405 - license see mu.go

// #cgo LDFLAGS: -lc
// #include <stdlib.h>
import
  "C"
import (
  "unsafe"
)


func installTerm (f func()) {
  C.atexit ((*[0]byte)(unsafe.Pointer(&f)))
}
