github.com/varialus/godfly@v0.0.0-20130904042352-1934f9f095ab/src/pkg/runtime/float.c (about)

     1  // Copyright 2009 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  #include "runtime.h"
     6  
     7  // used as float64 via runtime· names
     8  uint64	·nan		= 0x7FF8000000000001ULL;
     9  uint64	·posinf	= 0x7FF0000000000000ULL;
    10  uint64	·neginf	= 0xFFF0000000000000ULL;