summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDavid du Colombier <0intro@gmail.com>2013-12-09 07:55:53 -0500
committerDavid du Colombier <0intro@gmail.com>2013-12-09 07:55:53 -0500
commit6e1ebb0d26d7923be5a33dc276340a5e582b7e3b (patch)
tree69f09d2c486f2dd05c68ba4a4d844fcb397008a0 /include
parent3e28a9f8c095e27cc1d607b96b0f7c2e33c8a4d3 (diff)
downloadgo-6e1ebb0d26d7923be5a33dc276340a5e582b7e3b.tar.gz
liblink: fix Plan 9 build
R=golang-dev, rsc CC=golang-dev https://codereview.appspot.com/39280043 Committer: Russ Cox <rsc@golang.org>
Diffstat (limited to 'include')
-rw-r--r--include/plan9/386/u.h2
-rw-r--r--include/plan9/amd64/u.h2
-rw-r--r--include/plan9/link.h5
3 files changed, 9 insertions, 0 deletions
diff --git a/include/plan9/386/u.h b/include/plan9/386/u.h
index 4736b8efb..1c4076b5e 100644
--- a/include/plan9/386/u.h
+++ b/include/plan9/386/u.h
@@ -13,3 +13,5 @@ typedef uint uint32;
typedef vlong int64;
typedef uvlong uint64;
typedef int intptr;
+typedef float float32;
+typedef double float64;
diff --git a/include/plan9/amd64/u.h b/include/plan9/amd64/u.h
index 090b2fa5c..c2d499938 100644
--- a/include/plan9/amd64/u.h
+++ b/include/plan9/amd64/u.h
@@ -13,3 +13,5 @@ typedef uint uint32;
typedef vlong int64;
typedef uvlong uint64;
typedef vlong intptr;
+typedef float float32;
+typedef double float64;
diff --git a/include/plan9/link.h b/include/plan9/link.h
new file mode 100644
index 000000000..f65971efc
--- /dev/null
+++ b/include/plan9/link.h
@@ -0,0 +1,5 @@
+// Copyright 2013 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.
+
+#include "../link.h"