cpp

Coverage Report

Created: 2022-09-21 22:22

/home/andy/git/oilshell/oil/mycpp/runtime.h
Line
Count
Source
1
#ifndef MYCPP_RUNTIME_H
2
#define MYCPP_RUNTIME_H
3
4
#define GiB(bytes) (MiB(bytes) * 1024)
5
2
#define MiB(bytes) (KiB(bytes) * 1024)
6
3
#define KiB(bytes) ((bytes)*1024)
7
8
// clang-format off
9
#include "mycpp/common.h"
10
#include "mycpp/gc_obj.h"
11
#include "mycpp/gc_heap.h"
12
#include "mycpp/builtins.h"
13
14
#include "mycpp/tuple_types.h"
15
#include "mycpp/gc_str.h"
16
#include "mycpp/gc_slab.h"
17
#include "mycpp/gc_list.h"
18
#include "mycpp/gc_dict.h"
19
20
#include "mycpp/leaky_mylib.h"
21
// clang-format on
22
23
#endif  // MYCPP_RUNTIME_H