1
0
mirror of https://github.com/sjwhitworth/golearn.git synced 2025-04-28 13:48:56 +08:00

15 lines
171 B
Go
Raw Normal View History

2014-07-21 00:17:16 +01:00
// +build go1.2
package linear_models
/*
void libLinearPrintFunc(char *);
void golearn_liblinear_print_func_cgo(char *c) {
libLinearPrintFunc(c);
}
*/
import "C"