OLD | NEW |
1 // Copyright 2009 The Go Authors. All rights reserved. | 1 // Copyright 2009 The Go Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style | 2 // Use of this source code is governed by a BSD-style |
3 // license that can be found in the LICENSE file. | 3 // license that can be found in the LICENSE file. |
4 | 4 |
5 #include <u.h> | 5 #include <u.h> |
6 #include <libc.h> | 6 #include <libc.h> |
7 | 7 |
8 #include "../gc/go.h" | 8 #include "../gc/go.h" |
9 #include "../8l/8.out.h" | 9 #include "../8l/8.out.h" |
10 | 10 |
11 #ifndef EXTERN | 11 #ifndef EXTERN |
12 #define EXTERN» extern | 12 #define»EXTERN» extern |
13 #endif | 13 #endif |
14 | 14 |
15 typedef struct Addr Addr; | 15 typedef struct Addr Addr; |
16 | 16 |
17 struct Addr | 17 struct Addr |
18 { | 18 { |
19 int32 offset; | 19 int32 offset; |
20 int32 offset2; | 20 int32 offset2; |
21 | 21 |
22 double dval; | 22 double dval; |
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
178 */ | 178 */ |
179 int Aconv(Fmt*); | 179 int Aconv(Fmt*); |
180 int Dconv(Fmt*); | 180 int Dconv(Fmt*); |
181 int Pconv(Fmt*); | 181 int Pconv(Fmt*); |
182 int Rconv(Fmt*); | 182 int Rconv(Fmt*); |
183 int Yconv(Fmt*); | 183 int Yconv(Fmt*); |
184 void listinit(void); | 184 void listinit(void); |
185 | 185 |
186 void zaddr(Biobuf*, Addr*, int, int); | 186 void zaddr(Biobuf*, Addr*, int, int); |
187 | 187 |
OLD | NEW |