mirror of
https://github.com/sjwhitworth/golearn.git
synced 2025-04-28 13:48:56 +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
|
||
|
}
|