1
0
mirror of https://github.com/golang/go synced 2024-09-23 21:30:18 -06:00
go/doc/progs/cgo2.go
2013-06-04 01:40:53 +08:00

24 lines
350 B
Go

// skip
// Copyright 2012 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package rand2
/*
#include <stdlib.h>
*/
import "C"
func Random() int {
var r C.int = C.rand()
return int(r)
}
// STOP OMIT
func Seed(i int) {
C.srand(C.uint(i))
}
// END OMIT