File: init.go

package info (click to toggle)
golang-github-d2g-dhcp4client 0.0~git20150520-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 108 kB
  • sloc: makefile: 3
file content (10 lines) | stat: -rw-r--r-- 100 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
package dhcp4client

import (
	"math/rand"
	"time"
)

func init() {
	rand.Seed(time.Now().Unix())
}