1
0
mirror of https://github.com/sjwhitworth/golearn.git synced 2025-04-26 13:49:14 +08:00
2014-07-21 00:17:16 +01:00

15 lines
171 B
Go

// +build go1.2
package linear_models
/*
void libLinearPrintFunc(char *);
void golearn_liblinear_print_func_cgo(char *c) {
libLinearPrintFunc(c);
}
*/
import "C"