extern.mx raw

   1  package runtime
   2  
   3  func Callers(skip int, pc []uintptr) int {
   4  	return 0
   5  }
   6  
   7  // buildVersion is the Moxie tree's version string at build time.
   8  //
   9  // This is set by the linker.
  10  var buildVersion string
  11  
  12  // Version returns the Moxie tree's version string.
  13  // It is the same as goenv.Version().
  14  func Version() string {
  15  	return buildVersion
  16  }
  17