~ubuntu-branches/ubuntu/wily/juju-core/wily-proposed

« back to all changes in this revision

Viewing changes to src/golang.org/x/net/icmp/sys_freebsd.go

  • Committer: Package Import Robot
  • Author(s): Curtis C. Hovey
  • Date: 2015-06-05 17:40:37 UTC
  • mfrom: (1.1.34)
  • Revision ID: package-import@ubuntu.com-20150605174037-lcv12myq9gu4194e
Tags: 1.22.5-0ubuntu1
* New upstream bugfix release (Lp: #1462001).
* d/copyright: Updated to reflect changes in the codebase.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// Copyright 2014 The Go Authors. All rights reserved.
 
2
// Use of this source code is governed by a BSD-style
 
3
// license that can be found in the LICENSE file.
 
4
 
 
5
package icmp
 
6
 
 
7
import "syscall"
 
8
 
 
9
func init() {
 
10
        freebsdVersion, _ = syscall.SysctlUint32("kern.osreldate")
 
11
}