aboutsummaryrefslogtreecommitdiff
path: root/doc/progs/cgo2.go
diff options
context:
space:
mode:
Diffstat (limited to 'doc/progs/cgo2.go')
-rw-r--r--doc/progs/cgo2.go22
1 files changed, 0 insertions, 22 deletions
diff --git a/doc/progs/cgo2.go b/doc/progs/cgo2.go
deleted file mode 100644
index da07aa49e6..0000000000
--- a/doc/progs/cgo2.go
+++ /dev/null
@@ -1,22 +0,0 @@
-// 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