Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions tdu_generic.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ import (
"fmt"
)

func osInit() bool {
return true
func osInit() (bool, interface{}) {
return true, nil
}
func osEnd() bool {
func osEnd(sys interface{}) bool {
return true
}

Expand All @@ -32,7 +32,7 @@ func getTtyWidth(sc *s_scan) int {
return 80
}

func initTty(sc *sc_scan) {} // OS Specific
func initTty(sc *s_scan) {} // OS Specific

func printAlert(sc *s_scan, msg string) {
fmt.Printf(msg)
Expand Down