LEFT | RIGHT |
(no file at all) | |
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 <bio.h> | 5 #include <bio.h> |
6 | 6 |
7 #undef OAPPEND | 7 #undef OAPPEND |
8 | 8 |
9 // avoid <ctype.h> | 9 // avoid <ctype.h> |
10 #undef isblank | 10 #undef isblank |
(...skipping 834 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
845 | 845 |
846 EXTERN char* hunk; | 846 EXTERN char* hunk; |
847 EXTERN int32 nhunk; | 847 EXTERN int32 nhunk; |
848 EXTERN int32 thunk; | 848 EXTERN int32 thunk; |
849 | 849 |
850 EXTERN int funcdepth; | 850 EXTERN int funcdepth; |
851 EXTERN int typecheckok; | 851 EXTERN int typecheckok; |
852 EXTERN int compiling_runtime; | 852 EXTERN int compiling_runtime; |
853 | 853 |
854 EXTERN int rune32; | 854 EXTERN int rune32; |
| 855 EXTERN int oserror; |
855 | 856 |
856 /* | 857 /* |
857 * y.tab.c | 858 * y.tab.c |
858 */ | 859 */ |
859 int yyparse(void); | 860 int yyparse(void); |
860 | 861 |
861 /* | 862 /* |
862 * align.c | 863 * align.c |
863 */ | 864 */ |
864 int argsize(Type *t); | 865 int argsize(Type *t); |
(...skipping 476 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1341 #pragma varargck type "P" Prog* | 1342 #pragma varargck type "P" Prog* |
1342 #pragma varargck type "Q" Bits | 1343 #pragma varargck type "Q" Bits |
1343 #pragma varargck type "R" int | 1344 #pragma varargck type "R" int |
1344 #pragma varargck type "S" Sym* | 1345 #pragma varargck type "S" Sym* |
1345 #pragma varargck type "lS" Sym* | 1346 #pragma varargck type "lS" Sym* |
1346 #pragma varargck type "T" Type* | 1347 #pragma varargck type "T" Type* |
1347 #pragma varargck type "lT" Type* | 1348 #pragma varargck type "lT" Type* |
1348 #pragma varargck type "V" Val* | 1349 #pragma varargck type "V" Val* |
1349 #pragma varargck type "Y" char* | 1350 #pragma varargck type "Y" char* |
1350 #pragma varargck type "Z" Strlit* | 1351 #pragma varargck type "Z" Strlit* |
LEFT | RIGHT |