Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
go
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
go
Commits
f4279f58
Commit
f4279f58
authored
Jan 22, 2009
by
Russ Cox
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix build - missed this file
TBR=r OCL=23335 CL=23335
parent
1f8a40d8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
0 deletions
+20
-0
src/lib/math/runtime.go
src/lib/math/runtime.go
+20
-0
No files found.
src/lib/math/runtime.go
0 → 100644
View file @
f4279f58
// Copyright 2009 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
math
// implemented in C, in ../../runtime
// perhaps one day the implementations will move here.
func
Float32bits
(
f
float32
)
(
b
uint32
)
func
Float32frombits
(
b
uint32
)
(
f
float32
)
func
Float64bits
(
f
float64
)
(
b
uint64
)
func
Float64frombits
(
b
uint64
)
(
f
float64
)
func
Frexp
(
f
float64
)
(
frac
float64
,
exp
int
)
func
Inf
(
sign
int32
)
(
f
float64
)
func
IsInf
(
f
float64
,
sign
int
)
(
is
bool
)
func
IsNaN
(
f
float64
)
(
is
bool
)
func
Ldexp
(
frac
float64
,
exp
int
)
(
f
float64
)
func
Modf
(
f
float64
)
(
integer
float64
,
frac
float64
)
func
NaN
()
(
f
float64
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment