mirror of
https://github.com/sjwhitworth/golearn.git
synced 2025-04-26 13:49:14 +08:00
17 lines
214 B
Go
17 lines
214 B
Go
// +build go1.1
|
|
// +build !go1.2
|
|
// +build !go1.3
|
|
|
|
package linear_models
|
|
|
|
import "C"
|
|
|
|
//export libLinearPrintFunc
|
|
func libLinearPrintFunc(str *C.char) {
|
|
// Stubbed
|
|
}
|
|
|
|
func libLinearHookPrintFunc() {
|
|
// Stubbed
|
|
}
|