diff options
Diffstat (limited to 'libgo/runtime/map.goc')
-rw-r--r-- | libgo/runtime/map.goc | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/libgo/runtime/map.goc b/libgo/runtime/map.goc index da67d49287d..e4b8456dc36 100644 --- a/libgo/runtime/map.goc +++ b/libgo/runtime/map.goc @@ -3,13 +3,9 @@ // license that can be found in the LICENSE file. package runtime +#include "runtime.h" #include "map.h" -#define nil NULL -typedef unsigned char byte; -typedef _Bool bool; - -typedef struct __go_map_type MapType; typedef struct __go_map Hmap; typedef struct __go_hash_iter hiter; |