aboutsummaryrefslogtreecommitdiffstats
path: root/ffi/go/bls/callback.go
blob: ba73a5e15b4503de108d36f25ab9c2b658498d64 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
package bls

/*
// exported from bls.go
unsigned int wrapReadRandGo(void *buf, unsigned int n);
int wrapReadRandCgo(void *self, void *buf, unsigned int n)
{
    (void)self;
    return wrapReadRandGo(buf, n);
}
*/
import "C"